Chromium Code Reviews| Index: tests/compiler/dart2js_extra/hash_code_test.dart |
| diff --git a/tests/compiler/dart2js_extra/hash_code_test.dart b/tests/compiler/dart2js_extra/hash_code_test.dart |
| index 6e25fed1b31c646f23f0dff28cc6da2ff02dc90a..bf7aed523dd0f6e14d9239e8cf023769c95f25e9 100644 |
| --- a/tests/compiler/dart2js_extra/hash_code_test.dart |
| +++ b/tests/compiler/dart2js_extra/hash_code_test.dart |
| @@ -30,8 +30,8 @@ check(value1, value2) { |
| Expect.isFalse((h1 & 0xf) == (h2 & 0xf)); |
|
ahe
2013/06/04 06:02:46
I think this test is flaky.
|
| // Quality check - the values should be SMIs for efficient arithmetic. |
| - Expect.equals((h1 & 0x1fffffff), h1); |
| - Expect.equals((h2 & 0x1fffffff), h2); |
| + Expect.equals((h1 & 0x3fffffff), h1); |
| + Expect.equals((h2 & 0x3fffffff), h2); |
| } |
| bools() { |