Quellcode durchsuchen

[tests] ignore as3 :-/

Dan Korostelev vor 6 Jahren
Ursprung
Commit
a950da06ae
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  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");