| Index: tests/standalone/io/test_runner_test.dart
|
| diff --git a/tests/standalone/io/test_runner_test.dart b/tests/standalone/io/test_runner_test.dart
|
| index 12fcae91113e9d11c5155d9ffe592ea008ae2d7a..ecbbe6118e5b9da235fea98fb4d30994a924d437 100644
|
| --- a/tests/standalone/io/test_runner_test.dart
|
| +++ b/tests/standalone/io/test_runner_test.dart
|
| @@ -69,7 +69,7 @@ class CustomTestSuite extends TestSuite {
|
| CustomTestSuite(Configuration configuration)
|
| : super(configuration, "CustomTestSuite");
|
|
|
| - Future forEachTest(TestCaseEvent onTest, Map testCache, [onDone]) {
|
| + Future forEachTest(TestCaseEvent onTest, Map testCache, [onDone]) async {
|
| void enqueueTestCase(testCase) {
|
| TestController.numTests++;
|
| onTest(testCase);
|
| @@ -91,8 +91,6 @@ class CustomTestSuite extends TestSuite {
|
| if (onDone != null) {
|
| onDone();
|
| }
|
| -
|
| - return null;
|
| }
|
|
|
| TestCase _makeNormalTestCase(name, expectations) {
|
|
|