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

Unified Diff: tests/language/enum_private_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/enum_private_test.dart
diff --git a/tests/language/enum_private_test.dart b/tests/language/enum_private_test.dart
index bf99f4f2ae995a782204bb31a0f965d2f6c15720..f33f91a26a2610cdeb881c4d957d6750a8170cdc 100644
--- a/tests/language/enum_private_test.dart
+++ b/tests/language/enum_private_test.dart
@@ -17,8 +17,8 @@ enum Enum1 {
main() {
Expect.equals('Enum1._A,Enum1._B', Enum1.values.join(','));
- Expect.equals('Enum2._A,Enum2._B', Enum2.values.join(',')); /// 01: ok
- Expect.throws(() => Enum2._A, (e) => e is NoSuchMethodError); /// 02: static type warning
+ Expect.equals('Enum2._A,Enum2._B', Enum2.values.join(',')); //# 01: ok
+ Expect.throws(() => Enum2._A, (e) => e is NoSuchMethodError); //# 02: static type warning
}

Powered by Google App Engine
This is Rietveld 408576698