Index: tests/standalone/medium_integer_test.dart |
diff --git a/tests/standalone/medium_integer_test.dart b/tests/standalone/medium_integer_test.dart |
index dc6042cf3d389704f708799db2ef59190aa13100..8abdaeee82f3f36c798ab0c979f07e06dcb2c9c6 100644 |
--- a/tests/standalone/medium_integer_test.dart |
+++ b/tests/standalone/medium_integer_test.dart |
@@ -101,8 +101,8 @@ class MediumIntegerTest { |
testMintAnd(0x100000001); |
var a = 100000000000; |
var b = 100000000001; |
- Expect.equals(false, a.hashCode() == b.hashCode()); |
- Expect.equals(true, a.hashCode() == (b - 1).hashCode()); |
+ Expect.equals(false, a.hashCode == b.hashCode); |
+ Expect.equals(true, a.hashCode == (b - 1).hashCode); |
} |
} |