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

Unified Diff: tests/language_strong/instanceof4_test.dart

Issue 2765893003: Fix warnings_checker.dart handling of multitests (Closed)
Patch Set: Created 3 years, 9 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_strong/instanceof4_test.dart
diff --git a/tests/language_strong/instanceof4_test.dart b/tests/language_strong/instanceof4_test.dart
index 8a7de67b6c90b7b319182d71408edc56017f034b..4bcfadde8cd2190de364ab6870bd09549de9e054 100644
--- a/tests/language_strong/instanceof4_test.dart
+++ b/tests/language_strong/instanceof4_test.dart
@@ -22,23 +22,23 @@ testFooString() {
Expect.isTrue(!o.isNotT());
Expect.isTrue(o.isListT());
Expect.isTrue(!o.isNotListT());
- Expect.isTrue(!o.isAlsoListT()); // /// 01: ok
- Expect.isTrue(o.isNeitherListT()); // /// 01: ok
+ Expect.isTrue(!o.isAlsoListT()); // //# 01: ok
+ Expect.isTrue(o.isNeitherListT()); // //# 01: ok
for (var i = 0; i < 20; i++) {
// Make sure methods are optimized.
o.isT();
o.isNotT();
o.isListT();
o.isNotListT();
- o.isAlsoListT(); // /// 01: ok
- o.isNeitherListT(); // /// 01: ok
+ o.isAlsoListT(); // //# 01: ok
+ o.isNeitherListT(); // //# 01: ok
}
Expect.isTrue(o.isT(), "1");
Expect.isTrue(!o.isNotT(), "2");
Expect.isTrue(o.isListT(), "3");
Expect.isTrue(!o.isNotListT(), "4");
- Expect.isTrue(!o.isAlsoListT(), "5"); // /// 01: ok
- Expect.isTrue(o.isNeitherListT(), "6"); // /// 01: ok
+ Expect.isTrue(!o.isAlsoListT(), "5"); // //# 01: ok
+ Expect.isTrue(o.isNeitherListT(), "6"); // //# 01: ok
}
testFooInt() {
« no previous file with comments | « tests/language_strong/inferrer_constructor5_test.dart ('k') | tests/language_strong/instantiate_type_variable_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698