Explorar o código

disable test #4481 for jvm

Aleksandr Kuzmenko %!s(int64=6) %!d(string=hai) anos
pai
achega
19167a20e9
Modificáronse 1 ficheiros con 2 adicións e 1 borrados
  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
 }