Index: test/runner/browser/runner_test.dart |
diff --git a/test/runner/browser/runner_test.dart b/test/runner/browser/runner_test.dart |
index 2627a139bf620dbd0a1d1a32306a3cb2d53455c8..abe5ac4da5e06f56e21b6a64fdb5e8e26f0a81f6 100644 |
--- a/test/runner/browser/runner_test.dart |
+++ b/test/runner/browser/runner_test.dart |
@@ -7,8 +7,8 @@ |
import 'dart:io'; |
import 'package:path/path.dart' as p; |
-import 'package:unittest/src/util/exit_codes.dart' as exit_codes; |
-import 'package:unittest/unittest.dart'; |
+import 'package:test/src/util/exit_codes.dart' as exit_codes; |
+import 'package:test/test.dart'; |
import '../../io.dart'; |
@@ -17,7 +17,7 @@ String _sandbox; |
final _success = """ |
import 'dart:async'; |
-import 'package:unittest/unittest.dart'; |
+import 'package:test/test.dart'; |
void main() { |
test("success", () {}); |
@@ -26,7 +26,7 @@ void main() { |
void main() { |
setUp(() { |
- _sandbox = Directory.systemTemp.createTempSync('unittest_').path; |
+ _sandbox = Directory.systemTemp.createTempSync('test_').path; |
}); |
tearDown(() { |
@@ -113,7 +113,7 @@ void main() { |
new File(p.join(_sandbox, "test.dart")).writeAsStringSync(""" |
import 'dart:async'; |
-import 'package:unittest/unittest.dart'; |
+import 'package:test/test.dart'; |
void main() { |
test("failure", () => throw new TestFailure("oh no")); |
@@ -128,7 +128,7 @@ void main() { |
import 'dart:async'; |
import 'package:path/path.dart' as p; |
-import 'package:unittest/unittest.dart'; |
+import 'package:test/test.dart'; |
void main() { |
test("test", () { |
@@ -145,7 +145,7 @@ void main() { |
import 'dart:async'; |
import 'package:path/path.dart' as p; |
-import 'package:unittest/unittest.dart'; |
+import 'package:test/test.dart'; |
void main() { |
test("test", () { |
@@ -162,7 +162,7 @@ void main() { |
new File(p.join(_sandbox, "test.dart")).writeAsStringSync(""" |
import 'dart:async'; |
-import 'package:unittest/unittest.dart'; |
+import 'package:test/test.dart'; |
void main() { |
test("test", () { |