Browse Source

fix test for #5816

Aleksandr Kuzmenko 6 years ago
parent
commit
b0fff06c42
1 changed files with 2 additions and 2 deletions
  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);
 	}
 	}
 }
 }