Index: runtime/observatory/tests/service/auth_token1_test.dart |
diff --git a/runtime/observatory/tests/service/auth_token1_test.dart b/runtime/observatory/tests/service/auth_token1_test.dart |
index 8ee6560c6615128a1286471c615ea18426dc86ab..134047a69b5888405cf83c7f4ace4348ce8d684a 100644 |
--- a/runtime/observatory/tests/service/auth_token1_test.dart |
+++ b/runtime/observatory/tests/service/auth_token1_test.dart |
@@ -32,17 +32,18 @@ Future<Null> testeeBefore() async { |
} |
var tests = [ |
- (Isolate isolate) async { |
- await isolate.reload(); |
- // Just getting here means that the testee enabled the service protocol |
- // web server. |
- expect(true, true); |
- } |
+(Isolate isolate) async { |
+ await isolate.reload(); |
+ // Just getting here means that the testee enabled the service protocol |
+ // web server. |
+ expect(true, true); |
+} |
]; |
-main(args) => runIsolateTests(args, tests, |
- testeeBefore: testeeBefore, |
- // the testee is responsible for starting the |
- // web server. |
- testeeControlsServer: true, |
- useAuthToken: false); |
+main(args) => runIsolateTests(args, |
+ tests, |
+ testeeBefore: testeeBefore, |
+ // the testee is responsible for starting the |
+ // web server. |
+ testeeControlsServer: true, |
+ useAuthToken: false); |