| Index: test/runner/browser/compact_reporter_test.dart
|
| diff --git a/test/runner/browser/compact_reporter_test.dart b/test/runner/browser/compact_reporter_test.dart
|
| index 2784fc8cb1c905937acfd5a0628f6d8878b59766..70877d8f35f76c984f12244aff391f9e350ca49c 100644
|
| --- a/test/runner/browser/compact_reporter_test.dart
|
| +++ b/test/runner/browser/compact_reporter_test.dart
|
| @@ -35,7 +35,7 @@ void main() {
|
| }
|
| """);
|
|
|
| - var result = _runUnittest(
|
| + var result = _runTest(
|
| ["-p", "chrome", "-p", "vm", "-j", "1", "test.dart"]);
|
| expect(result.stdout, contains("[VM]"));
|
| expect(result.stdout, contains("[Chrome]"));
|
| @@ -43,5 +43,5 @@ void main() {
|
| });
|
| }
|
|
|
| -ProcessResult _runUnittest(List<String> args) =>
|
| - runUnittest(args, workingDirectory: _sandbox);
|
| +ProcessResult _runTest(List<String> args) =>
|
| + runTest(args, workingDirectory: _sandbox);
|
|
|