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

Unified Diff: tests/corelib/symbol_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/corelib/symbol_test.dart
diff --git a/tests/corelib/symbol_test.dart b/tests/corelib/symbol_test.dart
index 0bdb09463416e64b2fbb1f75d2cc1cbed66f7d19..6b97092a670c334d7ac6787b3c07f269dccbb4d1 100644
--- a/tests/corelib/symbol_test.dart
+++ b/tests/corelib/symbol_test.dart
@@ -9,7 +9,7 @@ main() {
print(x = const Symbol('fisk'));
try {
- print(const Symbol(0)); /// 01: compile-time error
+ print(const Symbol(0)); //# 01: compile-time error
} on NoSuchMethodError {
print('Caught NoSuchMethodError');
} on TypeError {
@@ -17,13 +17,13 @@ main() {
}
try {
- print(const Symbol('0')); /// 02: compile-time error
+ print(const Symbol('0')); //# 02: compile-time error
} on ArgumentError catch (e) {
print('Caught $e');
}
try {
- print(const Symbol('_')); /// 03: compile-time error
+ print(const Symbol('_')); //# 03: compile-time error
} on ArgumentError catch (e) {
print('Caught $e');
}

Powered by Google App Engine
This is Rietveld 408576698