Index: tests/html/isolates_test.dart |
diff --git a/tests/html/isolates_test.dart b/tests/html/isolates_test.dart |
index 9c07ed0eb25472461e4de99d9d4b260ae146ab2c..8813df7d345e0643582496a24da661dcda7aa285 100644 |
--- a/tests/html/isolates_test.dart |
+++ b/tests/html/isolates_test.dart |
@@ -1,4 +1,5 @@ |
library IsolatesTest; |
+ |
import 'package:unittest/unittest.dart'; |
import 'package:unittest/html_config.dart'; |
import 'dart:async'; |
@@ -47,7 +48,7 @@ main() { |
port.close(); |
}); |
test('NonDOMIsolates', () { |
- var callback = expectAsync((){}); |
+ var callback = expectAsync(() {}); |
var response = new isolate.ReceivePort(); |
var remote = isolate.Isolate.spawn(isolateEntry, response.sendPort); |
response.first.then((port) { |