Browse Source

[php] ignore more

Simon Krajewski 10 năm trước cách đây
mục cha
commit
d0df45651b
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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
 }