| Index: test/missing_tick_test.dart
|
| diff --git a/test/missing_tick_test.dart b/test/missing_tick_test.dart
|
| index bffd0affde205b507f3c51c0f7a927cc7d8fc279..81b033153206068b3f3267ca9e897721640252a1 100644
|
| --- a/test/missing_tick_test.dart
|
| +++ b/test/missing_tick_test.dart
|
| @@ -14,13 +14,14 @@ void _test(message) {
|
| initMetatest(message, timeout: const Duration(seconds: 1));
|
|
|
| expectTestResults('missing tick', () {
|
| -
|
| test('test that should time out', () {
|
| expectAsync(() {});
|
| });
|
| - }, [{
|
| - 'description': 'test that should time out',
|
| - 'message': 'Test timed out after 1 seconds.',
|
| - 'result': 'error',
|
| - }]);
|
| + }, [
|
| + {
|
| + 'description': 'test that should time out',
|
| + 'message': 'Test timed out after 1 seconds.',
|
| + 'result': 'error',
|
| + }
|
| + ]);
|
| }
|
|
|