Procházet zdrojové kódy

disable test for `null.nonExistent()` on lua and as3

Alexander Kuzmenko před 8 roky
rodič
revize
75c2432ed9
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      tests/unit/src/unit/issues/Issue4988.hx

+ 1 - 1
tests/unit/src/unit/issues/Issue4988.hx

@@ -9,8 +9,8 @@ class Issue4988 extends Test {
 			try {
 			try {
 				var d:{i:Null<Int>} = null;
 				var d:{i:Null<Int>} = null;
 				value = (d.i > 0);
 				value = (d.i > 0);
-				(null:Dynamic).nonExistent();
 				#if !(lua || as3)
 				#if !(lua || as3)
+				(null:Dynamic).nonExistent();
 				null.nonExistent();
 				null.nonExistent();
 				#end
 				#end
 				t(false);
 				t(false);