Index: tests/language_strong/substring_test.dart |
diff --git a/tests/language_strong/substring_test.dart b/tests/language_strong/substring_test.dart |
index aee577778d03621ea9e3a30f04a792af1c7d0751..93c4c3cbbbf2c51483c44bedf8e29594bf2b2bd5 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) { |