Chromium Code Reviews| Index: tests/language/compile_time_constant8_test.dart |
| =================================================================== |
| --- tests/language/compile_time_constant8_test.dart (revision 23747) |
| +++ tests/language/compile_time_constant8_test.dart (working copy) |
| @@ -15,6 +15,6 @@ |
| const list1 = const<int> [1, 2]; |
| const list2 = const [1, 2]; |
| main() { |
| - Expect.isFalse(a === b); |
| - Expect.isFalse(list1 === list2); |
| + Expect.isFalse(identical(a, b)); |
| + Expect.isFalse(identical(list1, list2)); |
| } |