| Index: test/expect_async_args_test.dart
|
| diff --git a/test/expect_async_args_test.dart b/test/expect_async_args_test.dart
|
| index a7e6e21d8b4c34cbcc5d31fc34546045a47e12c9..8e814dc9b83191e62e8e19a34e1c2ccba7252a0f 100644
|
| --- a/test/expect_async_args_test.dart
|
| +++ b/test/expect_async_args_test.dart
|
| @@ -39,17 +39,10 @@ void _test(message) {
|
| test('verify count', () {
|
| expect(count, 3);
|
| });
|
| - }, [{
|
| - 'description': 'expect async args',
|
| - 'result': 'pass',
|
| - }, {
|
| - 'description': 'invoked with too many args',
|
| - 'result': 'error',
|
| - }, {
|
| - 'description': 'created with too many args',
|
| - 'result': 'error',
|
| - }, {
|
| - 'description': 'verify count',
|
| - 'result': 'pass',
|
| - }]);
|
| + }, [
|
| + {'description': 'expect async args', 'result': 'pass',},
|
| + {'description': 'invoked with too many args', 'result': 'error',},
|
| + {'description': 'created with too many args', 'result': 'error',},
|
| + {'description': 'verify count', 'result': 'pass',}
|
| + ]);
|
| }
|
|
|