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

Unified Diff: tests/language/inferrer_constructor5_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/inferrer_constructor5_test.dart
diff --git a/tests/language/inferrer_constructor5_test.dart b/tests/language/inferrer_constructor5_test.dart
index 37b62f1084d21d860f5d890f8d391354fd92ffd5..7c416f491f58cec18f13f8db21a2a08ec5fbf490 100644
--- a/tests/language/inferrer_constructor5_test.dart
+++ b/tests/language/inferrer_constructor5_test.dart
@@ -6,7 +6,7 @@ import "package:expect/expect.dart";
class A {
A() {
- print(field + 42); /// 01: static type warning
+ print(field + 42); //# 01: static type warning
}
}
@@ -18,5 +18,5 @@ class B extends A {
}
main() {
- Expect.throws(() => new B(), (e) => e is NoSuchMethodError); /// 01: continued
+ Expect.throws(() => new B(), (e) => e is NoSuchMethodError); //# 01: continued
}

Powered by Google App Engine
This is Rietveld 408576698