Sfoglia il codice sorgente

deactivate two unit tests that relied on unspecified behavior

Simon Krajewski 13 anni fa
parent
commit
5515badaaf
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      tests/unit/TestBasetypes.hx

+ 2 - 2
tests/unit/TestBasetypes.hx

@@ -123,9 +123,9 @@ class TestBasetypes extends Test {
 		// This also seems rather odd on some platforms.
 		var x : Array<Dynamic> = ["4", 1];
 		t(Std.is(x[0], String));
-		t(Std.is(x[0] + x[0], String));
+		//t(Std.is(x[0] + x[0], String));
 		t(Std.is(x[1] + x[1], Int));
-		t(Std.is(x[0] + x[1], String));
+		//t(Std.is(x[0] + x[1], String));
 	}
 
 	function testMath() {