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

Unified Diff: tests/language_strong/f_bounded_quantification_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
« no previous file with comments | « tests/language_strong/external_test.dart ('k') | tests/language_strong/factory1_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language_strong/f_bounded_quantification_test.dart
diff --git a/tests/language_strong/f_bounded_quantification_test.dart b/tests/language_strong/f_bounded_quantification_test.dart
index b284ee31dacf39da1ef5c2b12b4308205edfd949..8f912dbb20d097b58ecbedfc4e507a6b3df9ebf3 100644
--- a/tests/language_strong/f_bounded_quantification_test.dart
+++ b/tests/language_strong/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
}
}
« no previous file with comments | « tests/language_strong/external_test.dart ('k') | tests/language_strong/factory1_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698