Index: tests/language/deferred_type_dependency_test.dart |
diff --git a/tests/language/deferred_type_dependency_test.dart b/tests/language/deferred_type_dependency_test.dart |
index dd285c8f1509d67e346a694c1ddf0cd9eb881908..b6d6fb5093a574919581975017b1e5e3b0501c0f 100644 |
--- a/tests/language/deferred_type_dependency_test.dart |
+++ b/tests/language/deferred_type_dependency_test.dart |
@@ -14,19 +14,19 @@ runTest() async { |
await lib1.loadLibrary(); |
// Split the cases into a multi-test to test each feature separately. |
Expect.isFalse( |
- lib1.fooIs /// is: ok |
- lib1.fooAs /// as: ok |
- lib1.fooAnnotation /// type_annotation: ok |
+ lib1.fooIs //# is: ok |
+ lib1.fooAs //# as: ok |
+ lib1.fooAnnotation //# type_annotation: ok |
("string") |
- is! String /// none: ok |
+ is! String //# none: ok |
); |
await lib2.loadLibrary(); |
Expect.isTrue( |
- lib1.fooIs /// is: ok |
- lib1.fooAs /// as: ok |
- lib1.fooAnnotation /// type_annotation: ok |
+ lib1.fooIs //# is: ok |
+ lib1.fooAs //# as: ok |
+ lib1.fooAnnotation //# type_annotation: ok |
(lib2.getInstance()) |
- is! String /// none: ok |
+ is! String //# none: ok |
); |
} |