Index: test/runner/compact_reporter_test.dart |
diff --git a/test/runner/compact_reporter_test.dart b/test/runner/compact_reporter_test.dart |
index 88e74f550519e5773adef263203953e703cf05f5..4650b9fcc35e49382e7c40339ed2c42852a127d8 100644 |
--- a/test/runner/compact_reporter_test.dart |
+++ b/test/runner/compact_reporter_test.dart |
@@ -16,7 +16,7 @@ void main() { |
test("reports when no tests are run", () { |
return withTempDir((path) { |
new File(p.join(path, "test.dart")).writeAsStringSync("void main() {}"); |
- var result = runUnittest(["test.dart"], workingDirectory: path); |
+ var result = runTest(["test.dart"], workingDirectory: path); |
expect(result.stdout, equals("No tests ran.\n")); |
}); |
}); |
@@ -334,7 +334,7 @@ $tests |
if (args == null) args = []; |
args = args.toList()..add("test.dart"); |
args.add("--concurrency=$concurrency"); |
- var result = runUnittest(args, workingDirectory: path); |
+ var result = runTest(args, workingDirectory: path); |
// Convert CRs into newlines, remove excess trailing whitespace, and trim |
// off timestamps. |