Index: test/protect_async_test.dart |
diff --git a/test/protect_async_test.dart b/test/protect_async_test.dart |
index d62816aada880b2e972dbc113dc779077e25bb8b..19211f2bb3e83a860747f78c31c348930500847a 100644 |
--- a/test/protect_async_test.dart |
+++ b/test/protect_async_test.dart |
@@ -40,17 +40,19 @@ void _test(message) { |
test('throw away 1', () { |
return new Future(() {}); |
}); |
- }, [{ |
- 'result': 'error', |
- 'message': 'Caught Bad state: error during protectAsync0' |
- }, { |
- 'result': 'error', |
- 'message': 'Caught Bad state: error during protectAsync1: one arg' |
- }, { |
- 'result': 'error', |
- 'message': 'Caught Bad state: error during protectAsync2: arg1, arg2' |
- }, { |
- 'result': 'pass', |
- 'message': '' |
- }]); |
+ }, [ |
+ { |
+ 'result': 'error', |
+ 'message': 'Caught Bad state: error during protectAsync0' |
+ }, |
+ { |
+ 'result': 'error', |
+ 'message': 'Caught Bad state: error during protectAsync1: one arg' |
+ }, |
+ { |
+ 'result': 'error', |
+ 'message': 'Caught Bad state: error during protectAsync2: arg1, arg2' |
+ }, |
+ {'result': 'pass', 'message': ''} |
+ ]); |
} |