Index: tests/isolate/count_test.dart |
diff --git a/tests/isolate/count_test.dart b/tests/isolate/count_test.dart |
index b6f1780e200f68c23180e3345d22864253d1e818..e4f88e9385cd5e2fd30a17ef9c9e1ae9ad2c4900 100644 |
--- a/tests/isolate/count_test.dart |
+++ b/tests/isolate/count_test.dart |
@@ -3,6 +3,7 @@ |
// BSD-style license that can be found in the LICENSE file. |
library CountTest; |
+ |
import 'dart:isolate'; |
import 'package:unittest/unittest.dart'; |
import "remote_unittest_helper.dart"; |
@@ -31,7 +32,7 @@ void main([args, port]) { |
Isolate.spawn(countMessages, local.sendPort); |
SendPort remote; |
int count = 0; |
- var done = expectAsync((){}); |
+ var done = expectAsync(() {}); |
local.listen((msg) { |
switch (msg[0]) { |
case "init": |