Index: lib/src/runner/loader.dart |
diff --git a/lib/src/runner/loader.dart b/lib/src/runner/loader.dart |
index 65e0bcf0295d8d31527e3061c74360a91a5551c1..a68e63edbb00ff5f3bee744b813738848415708b 100644 |
--- a/lib/src/runner/loader.dart |
+++ b/lib/src/runner/loader.dart |
@@ -14,7 +14,7 @@ import '../backend/suite.dart'; |
import '../util/dart.dart'; |
import '../util/io.dart'; |
import '../util/remote_exception.dart'; |
-import 'isolate_test.dart'; |
+import 'vm/isolate_test.dart'; |
import 'load_exception.dart'; |
/// A class for finding test files and loading them into a runnable form. |
@@ -65,13 +65,13 @@ class Loader { |
var receivePort = new ReceivePort(); |
return runInIsolate(''' |
-import "package:unittest/src/runner/vm_listener.dart"; |
+import "package:unittest/src/runner/vm/isolate_listener.dart"; |
import "${p.toUri(p.absolute(path))}" as test; |
void main(_, Map message) { |
var sendPort = message['reply']; |
- VmListener.start(sendPort, () => test.main); |
+ IsolateListener.start(sendPort, () => test.main); |
} |
''', { |
'reply': receivePort.sendPort |