浏览代码

fix test for #5816

Aleksandr Kuzmenko 6 年之前
父节点
当前提交
b0fff06c42
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      tests/unit/src/unit/issues/Issue5816.hx

+ 2 - 2
tests/unit/src/unit/issues/Issue5816.hx

@@ -6,8 +6,8 @@ class Issue5816 extends unit.Test {
 	static var value:Int64 = 0;
 	static var value:Int64 = 0;
 
 
 	function test() {
 	function test() {
-		eq((0:Int64), value);
+		t(value == 0);
 		value++;
 		value++;
-		eq((1:Int64), value);
+		t(value == 1);
 	}
 	}
 }
 }