Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(108)

Unified Diff: tests/language_2/compile_time_constant_e_test.dart

Issue 2994383002: Migrating block 50, first commit, after tool has run (Closed)
Patch Set: Updated status files based on feedback from whesse Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698