Browse Source

Actually disable the tests

Cauê Waneck 8 years ago
parent
commit
a427124520
1 changed files with 2 additions and 4 deletions
  1. 2 4
      tests/unit/src/unit/issues/Issue6325.hx

+ 2 - 4
tests/unit/src/unit/issues/Issue6325.hx

@@ -1,8 +1,7 @@
 package unit.issues;
 
-#if (!hl && !flash && !cpp && !as3)
-
 class Issue6325 extends Test {
+#if (!hl && !flash && !cpp && !as3)
   public function test() {
     var base = new Base();
     base.someInt = 42;
@@ -48,6 +47,5 @@ private class UsesChild extends UsesBase {
   public function doSomethingBase(base:Base) {
     return doSomething(base) + 1;
   }
-}
-
 #end
+}