| Index: tests/corelib/big_integer_vm_test.dart
|
| diff --git a/tests/corelib/big_integer_vm_test.dart b/tests/corelib/big_integer_vm_test.dart
|
| index ec1d755512b0feea9d14cd8b6155ff3e6a66bdc0..9c7719aa59e9ee2f088668311f368ed026291d9a 100644
|
| --- a/tests/corelib/big_integer_vm_test.dart
|
| +++ b/tests/corelib/big_integer_vm_test.dart
|
| @@ -168,8 +168,8 @@ class BigIntegerTest {
|
| Expect.equals(1234567890123456, (-1234567890123456).abs());
|
| var a = 10000000000000000000;
|
| var b = 10000000000000000001;
|
| - 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);
|
| }
|
| }
|
|
|
|
|