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

Unified Diff: tests/language/deferred_super_dependency_test.dart

Issue 2765893003: Fix warnings_checker.dart handling of multitests (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
« no previous file with comments | « tests/language/deferred_no_prefix_test.dart ('k') | tests/language/deferred_type_dependency_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/deferred_super_dependency_test.dart
diff --git a/tests/language/deferred_super_dependency_test.dart b/tests/language/deferred_super_dependency_test.dart
index d2f801fbe21bceb227b595eaba541c89b99390c3..aa42f8da90b2513860d05ce3008a6feba3698131 100644
--- a/tests/language/deferred_super_dependency_test.dart
+++ b/tests/language/deferred_super_dependency_test.dart
@@ -7,9 +7,9 @@
// used to cause a crash.
import "package:expect/expect.dart";
-import "deferred_super_dependency_lib.dart" deferred as lib; /// 01: static type warning
+import "deferred_super_dependency_lib.dart" deferred as lib; //# 01: static type warning
main() async {
- await lib.loadLibrary(); /// 01: continued
- Expect.throws(() => new lib.C().foo(), (e) => e is NoSuchMethodError); /// 01: continued
+ await lib.loadLibrary(); //# 01: continued
+ Expect.throws(() => new lib.C().foo(), (e) => e is NoSuchMethodError); //# 01: continued
}
« no previous file with comments | « tests/language/deferred_no_prefix_test.dart ('k') | tests/language/deferred_type_dependency_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698