Parcourir la source

[php] ignore more

Simon Krajewski il y a 10 ans
Parent
commit
d0df45651b
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      tests/unit/src/unit/TestBytes.hx

+ 1 - 1
tests/unit/src/unit/TestBytes.hx

@@ -127,7 +127,6 @@ class TestBytes extends Test {
 		eq(fget(bd3, 0), 0xC3);
 		eq(fget(bd3, 0), 0xC3);
 		eq(fget(bd3, 1), 0xA9);
 		eq(fget(bd3, 1), 0xA9);
 	}
 	}
-	#end
 
 
 	function testBytesDataEquality () {
 	function testBytesDataEquality () {
 		var b1 = haxe.io.Bytes.ofString("AB");
 		var b1 = haxe.io.Bytes.ofString("AB");
@@ -139,4 +138,5 @@ class TestBytes extends Test {
 		eq(b1.getString(0,2), b2.getString(0,2));
 		eq(b1.getString(0,2), b2.getString(0,2));
 
 
 	}
 	}
+	#end
 }
 }