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

Unified Diff: tests/language/instanceof4_test.dart

Issue 2765693002: Update all tests (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/instanceof4_test.dart
diff --git a/tests/language/instanceof4_test.dart b/tests/language/instanceof4_test.dart
index be5a068c8d71fac9201a3fce78a6476b6adc7d7c..843a0dbe41e950e7ff6ef5e5d512b931700563be 100644
--- a/tests/language/instanceof4_test.dart
+++ b/tests/language/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() {

Powered by Google App Engine
This is Rietveld 408576698