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

Unified Diff: tests/language_strong/const_objects_are_immutable_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
« no previous file with comments | « tests/language_strong/const_native_factory_test.dart ('k') | tests/language_strong/const_switch2_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language_strong/const_objects_are_immutable_test.dart
diff --git a/tests/language_strong/const_objects_are_immutable_test.dart b/tests/language_strong/const_objects_are_immutable_test.dart
index eb32b400e68823593bfa6fa0c2b75c740da5054f..8028818d2af3d00f7dbab202717e065d14a68ba3 100644
--- a/tests/language_strong/const_objects_are_immutable_test.dart
+++ b/tests/language_strong/const_objects_are_immutable_test.dart
@@ -24,6 +24,6 @@ main() {
Expect.equals(1, a1.x);
A a2 = const A(1, 2);
- Expect.throws(() => a2.x = 499); /// 01: static type warning
+ Expect.throws(() => a2.x = 499); //# 01: static type warning
Expect.equals(1, a2.x);
}
« no previous file with comments | « tests/language_strong/const_native_factory_test.dart ('k') | tests/language_strong/const_switch2_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698