Index: test/excess_callback_test.dart |
diff --git a/test/excess_callback_test.dart b/test/excess_callback_test.dart |
index 45dca37e3f98160d6d69ec95aa171dd1faccbcf1..2679d17e202d0b706cb35b201c02d6034c6dcbfb 100644 |
--- a/test/excess_callback_test.dart |
+++ b/test/excess_callback_test.dart |
@@ -31,12 +31,12 @@ void _test(message) { |
test('verify count', () { |
expect(count, 1); |
}); |
- }, [{ |
- 'description': 'test', |
- 'message': 'Callback called more times than expected (1).', |
- 'result': 'fail' |
- }, { |
- 'description': 'verify count', |
- 'result': 'pass', |
- }]); |
+ }, [ |
+ { |
+ 'description': 'test', |
+ 'message': 'Callback called more times than expected (1).', |
+ 'result': 'fail' |
+ }, |
+ {'description': 'verify count', 'result': 'pass',} |
+ ]); |
} |