Browse Source

Merge pull request #2557 from nadako/tests_fix_cs

Fix test compilation on C# - there's no haxe.Timer implementation yet.
Cauê Waneck 11 năm trước cách đây
mục cha
commit
4cbcc16ad2
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      tests/unit/TestCSharp.hx

+ 1 - 1
tests/unit/TestCSharp.hx

@@ -111,7 +111,7 @@ class TestCSharp extends Test
 		f(a == null);
 		f(null == a);
 		t(a != null);
-		f(null != a);
+		t(null != a);
 	}
 
 	#end