소스 검색

[tests] ignore as3 :-/

Dan Korostelev 6 년 전
부모
커밋
a950da06ae
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      tests/unit/src/unit/issues/Issue8248.hx

+ 2 - 2
tests/unit/src/unit/issues/Issue8248.hx

@@ -1,6 +1,6 @@
 package unit.issues;
 
-#if flash
+#if (flash && !as3)
 private class NoProtected {}
 
 private class Base extends NoProtected {
@@ -30,7 +30,7 @@ private class ExternGrandChild extends ExternChild {
 #end
 
 class Issue8248 extends unit.Test {
-	#if flash
+	#if (flash && !as3)
 	function test() {
 		eq(new GrandChild().x, 2);
 		eq(new ExternGrandChild().getF(), "bye");