Procházet zdrojové kódy

disable test #4481 for jvm

Aleksandr Kuzmenko před 6 roky
rodič
revize
19167a20e9
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. 2 1
      tests/unit/src/unit/issues/Issue4481.hx

+ 2 - 1
tests/unit/src/unit/issues/Issue4481.hx

@@ -2,11 +2,12 @@ package unit.issues;
 
 class Issue4481 extends unit.Test {
 	static var s:String = null;
-
+#if !jvm
 	function test() {
 		switch s {
 			case 'a': assert();
 			case _: eq(null, s);
 		}
 	}
+#end
 }