| Index: tests/language_2/compile_time_constant_e_test.dart
|
| diff --git a/tests/language/compile_time_constant_e_test.dart b/tests/language_2/compile_time_constant_e_test.dart
|
| similarity index 93%
|
| rename from tests/language/compile_time_constant_e_test.dart
|
| rename to tests/language_2/compile_time_constant_e_test.dart
|
| index f7d4e18ecd061bb3ae3f5544470c262115c4d2cd..f5b837fc15507e0a145a6af407d4faf7cc8ba1e1 100644
|
| --- a/tests/language/compile_time_constant_e_test.dart
|
| +++ b/tests/language_2/compile_time_constant_e_test.dart
|
| @@ -50,9 +50,9 @@ main() {
|
| Expect.equals(99, a1.z);
|
| Expect.equals(100, a1.t);
|
| Expect.equals("A 3 499 99 100", a1.toString());
|
| - Expect.isTrue(identical(a1, a2));
|
| - Expect.isTrue(identical(a1, a4));
|
| - Expect.isTrue(identical(a1, a5));
|
| + Expect.identical(a1, a2);
|
| + Expect.identical(a1, a4);
|
| + Expect.identical(a1, a5);
|
|
|
| Expect.equals(1, a3.x);
|
| Expect.equals(2, a3.y);
|
| @@ -78,7 +78,7 @@ main() {
|
| Expect.equals(null, a8.t);
|
| Expect.equals("A null null null null", a8.toString());
|
|
|
| - Expect.isTrue(identical(a3, a9));
|
| + Expect.identical(a3, a9);
|
|
|
| Expect.equals(4, a10.x);
|
| Expect.equals(3, a10.y);
|
|
|