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

Unified Diff: tests/language_strong/field_type_check2_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_strong/field_type_check2_test.dart
diff --git a/tests/language_strong/field_type_check2_test.dart b/tests/language_strong/field_type_check2_test.dart
index 80925f4f7d4d307073a8c4634a9bd1b90c2e0c41..8fa875217a5c2794c16861719f64dee20bcb2eb7 100644
--- a/tests/language_strong/field_type_check2_test.dart
+++ b/tests/language_strong/field_type_check2_test.dart
@@ -6,7 +6,7 @@ class A {
A a;
bar(c) {
- c.a = 2; /// 01: dynamic type error
+ c.a = 2; //# 01: dynamic type error
}
}
@@ -15,6 +15,6 @@ class B {
}
main() {
- new A().bar(new A()); /// 01: continued
+ new A().bar(new A()); //# 01: continued
new A().bar(new B());
}

Powered by Google App Engine
This is Rietveld 408576698