Explorar el Código

fix invalid c# test

Dan Korostelev hace 11 años
padre
commit
17edac068b
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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