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/f_bounded_quantification_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/f_bounded_quantification_test.dart
diff --git a/tests/language/f_bounded_quantification_test.dart b/tests/language/f_bounded_quantification_test.dart
index 133fd19cd63fd45b105c13f9473e8de1f3743431..d9cacead711ad3cb79b286ff8b43f6c0d61aec00 100644
--- a/tests/language/f_bounded_quantification_test.dart
+++ b/tests/language/f_bounded_quantification_test.dart
@@ -32,22 +32,22 @@ main() {
{
bool got_type_error = false;
try {
- FBound<SubBar> fsb = new FBound<SubBar>(); /// 01: static type warning
+ FBound<SubBar> fsb = new FBound<SubBar>(); //# 01: static type warning
} on TypeError catch (error) {
got_type_error = true;
}
// Type error in checked mode only.
- Expect.isTrue(got_type_error == isCheckedMode()); /// 01: continued
+ Expect.isTrue(got_type_error == isCheckedMode()); //# 01: continued
}
FBound<Baz<Bar>> fbb = new FBound<Baz<Bar>>();
{
bool got_type_error = false;
try {
- FBound<SubBaz<Bar>> fsb = new FBound<SubBaz<Bar>>(); /// 02: static type warning
+ FBound<SubBaz<Bar>> fsb = new FBound<SubBaz<Bar>>(); //# 02: static type warning
} on TypeError catch (error) {
got_type_error = true;
}
// Type error in checked mode only.
- Expect.isTrue(got_type_error == isCheckedMode()); /// 02: continued
+ Expect.isTrue(got_type_error == isCheckedMode()); //# 02: continued
}
}

Powered by Google App Engine
This is Rietveld 408576698