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

Unified Diff: tests/language/substring_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/substring_test.dart
diff --git a/tests/language/substring_test.dart b/tests/language/substring_test.dart
index aee577778d03621ea9e3a30f04a792af1c7d0751..93c4c3cbbbf2c51483c44bedf8e29594bf2b2bd5 100644
--- a/tests/language/substring_test.dart
+++ b/tests/language/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) {

Powered by Google App Engine
This is Rietveld 408576698