| Index: tests/standalone/io/read_into_const_list_test.dart
|
| diff --git a/tests/standalone/io/read_into_const_list_test.dart b/tests/standalone/io/read_into_const_list_test.dart
|
| index 4df6c0074b4140bf9a633aeef68ac398ab8982c2..0362f3c31ff398dc0f8a8dac2001477ad8f150d2 100644
|
| --- a/tests/standalone/io/read_into_const_list_test.dart
|
| +++ b/tests/standalone/io/read_into_const_list_test.dart
|
| @@ -13,7 +13,7 @@ String getFilename(String path) =>
|
| void main() {
|
| var a = const [0];
|
| var b = const [0];
|
| - Expect.isTrue(a === b);
|
| + Expect.identical(a, b);
|
|
|
| String filename = getFilename("bin/file_test.cc");
|
| File file = new File(filename);
|
|
|