소스 검색

disable test #4481 for jvm

Aleksandr Kuzmenko 6 년 전
부모
커밋
19167a20e9
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  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
 }