Răsfoiți Sursa

[php] ignore more

Simon Krajewski 10 ani în urmă
părinte
comite
d0df45651b
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  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, 1), 0xA9);
 	}
-	#end
 
 	function testBytesDataEquality () {
 		var b1 = haxe.io.Bytes.ofString("AB");
@@ -139,4 +138,5 @@ class TestBytes extends Test {
 		eq(b1.getString(0,2), b2.getString(0,2));
 
 	}
+	#end
 }