Index: tests/lib_strong/mirrors/reflect_class_test.dart |
diff --git a/tests/lib_strong/mirrors/reflect_class_test.dart b/tests/lib_strong/mirrors/reflect_class_test.dart |
index b2272cf47eb0eebc83b88efc980d87eb09f51a1b..1ab9c885cea1123e696cf61c8dbb0d302ce9a867 100644 |
--- a/tests/lib_strong/mirrors/reflect_class_test.dart |
+++ b/tests/lib_strong/mirrors/reflect_class_test.dart |
@@ -12,7 +12,7 @@ main() { |
Function expectedError = (e) => e is ArgumentError || e is TypeError; |
Expect.throws(() => reflectClass(dynamic), expectedError); |
- Expect.throws(() => reflectClass(1), expectedError); // /// 01: static type warning |
- Expect.throws(() => reflectClass("string"), expectedError); // /// 02: static type warning |
+ Expect.throws(() => reflectClass(1), expectedError); // //# 01: static type warning |
+ Expect.throws(() => reflectClass("string"), expectedError); // //# 02: static type warning |
Expect.throws(() => reflectClass(FooFunction), expectedError); |
} |