Sfoglia il codice sorgente

Merge pull request #2557 from nadako/tests_fix_cs

Fix test compilation on C# - there's no haxe.Timer implementation yet.
Cauê Waneck 11 anni fa
parent
commit
4cbcc16ad2
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  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