Simon Krajewski 13 lat temu
rodzic
commit
b32fb1e2ec
2 zmienionych plików z 0 dodań i 2 usunięć
  1. 0 1
      tests/unit/MyClass.hx
  2. 0 1
      tests/unit/TestType.hx

+ 0 - 1
tests/unit/MyClass.hx

@@ -40,7 +40,6 @@ class MyChild1 extends MyParent {
 
 class MyChild2 extends MyParent {
 	public function test1(mc1:MyChild1) return mc1.b()
-	public function test2(mc1:MyChild1) return mc1.c()
 }
 
 interface I1 { }

+ 0 - 1
tests/unit/TestType.hx

@@ -95,7 +95,6 @@ class TestType extends Test {
 		
 		var mc2 = new MyChild2();
 		eq(21, mc2.test1(new MyChild1()));
-		eq(19, mc2.test2(new MyChild1()));
 	}
 	
 	function testUnifyMin() {