2
0
Эх сурвалжийг харах

remove invalid Std.instance tests

Simon Krajewski 11 жил өмнө
parent
commit
c97bfaa4e1

+ 0 - 3
tests/unit/unitstd/Std.unit.hx

@@ -21,10 +21,7 @@ Std.instance("", String) == "";
 #end
 var a = [];
 Std.instance(a, Array) == a;
-Std.instance("", Array) == null;
-Std.instance([], String) == null;
 Std.instance(new MyClass.MyChild1(), MyClass.MyParent) != null;
-Std.instance(new MyClass.MyChild1(), MyClass) == null;
 
 // string
 var cwts = new ClassWithToString();