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

Unified Diff: tests/language/deferred_type_dependency_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/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
);
}

Powered by Google App Engine
This is Rietveld 408576698