| Index: tests/language/canonical_const2_test.dart
|
| diff --git a/tests/language/canonical_const2_test.dart b/tests/language/canonical_const2_test.dart
|
| index 02fb11e215b4ea3cc862c35f43dd4d506abb622c..3508885b0ff68329b677ae965cdb7c129f6ab32a 100644
|
| --- a/tests/language/canonical_const2_test.dart
|
| +++ b/tests/language/canonical_const2_test.dart
|
| @@ -5,5 +5,5 @@
|
| // Check that compile-time constants are correctly canonicalized.
|
|
|
| main() {
|
| - Expect.isTrue(const <num>[1,2] !== const <num>[1.0,2.0]);
|
| + Expect.isFalse(identical(const <num>[1,2], const <num>[1.0,2.0]));
|
| }
|
|
|