Index: tests/lib/mirrors/library_enumeration_deferred_loading_test.dart |
diff --git a/tests/lib/mirrors/library_enumeration_deferred_loading_test.dart b/tests/lib/mirrors/library_enumeration_deferred_loading_test.dart |
index 8ad55017f2d5517998cf7930c0a14e52cf0a6d1d..7783b74e9c7ea97ef49be0c68037cea4d4c755e4 100644 |
--- a/tests/lib/mirrors/library_enumeration_deferred_loading_test.dart |
+++ b/tests/lib/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()); |
}); |
-} |
+} |