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

Unified Diff: tests/language_strong/substring_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/substring_test.dart
diff --git a/tests/language_strong/substring_test.dart b/tests/language_strong/substring_test.dart
index e2dc3f1712a8d23345085d39dd44c8996c1e2c52..ccc92f6ffd59138aad00bbe4870e79cd35569e89 100644
--- a/tests/language_strong/substring_test.dart
+++ b/tests/language_strong/substring_test.dart
@@ -8,8 +8,8 @@ import "package:expect/expect.dart";
main() {
try {
- print("abcdef".substring(1.5, 3.5)); // /// 01: static type warning
- Expect.fail("Should have thrown an exception"); // /// 01: continued
+ print("abcdef".substring(1.5, 3.5)); // //# 01: static type warning
+ Expect.fail("Should have thrown an exception"); // //# 01: continued
} on TypeError catch (e) {
// OK.
} on ArgumentError catch (e) {
« no previous file with comments | « tests/language_strong/string_interpolation_test.dart ('k') | tests/language_strong/super_bound_closure_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698