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

Unified Diff: tests/lib_strong/mirrors/library_enumeration_deferred_loading_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 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/lib_strong/mirrors/library_enumeration_deferred_loading_test.dart
diff --git a/tests/lib_strong/mirrors/library_enumeration_deferred_loading_test.dart b/tests/lib_strong/mirrors/library_enumeration_deferred_loading_test.dart
index 8ad55017f2d5517998cf7930c0a14e52cf0a6d1d..7783b74e9c7ea97ef49be0c68037cea4d4c755e4 100644
--- a/tests/lib_strong/mirrors/library_enumeration_deferred_loading_test.dart
+++ b/tests/lib_strong/mirrors/library_enumeration_deferred_loading_test.dart
@@ -12,8 +12,8 @@ import 'other_library.dart' deferred as other;
main() {
var ms = currentMirrorSystem();
- Expect.throws(() => ms.findLibrary(#test.other_library),
- (e) => true, "should not be loaded yet");
+ Expect.throws(() => ms.findLibrary(#test.other_library), (e) => true,
+ "should not be loaded yet");
asyncStart();
other.loadLibrary().then((_) {
@@ -23,4 +23,4 @@ main() {
Expect.equals(#test.other_library, otherMirror.simpleName);
Expect.equals(42, other.topLevelMethod());
});
-}
+}

Powered by Google App Engine
This is Rietveld 408576698