| Index: pkg/scheduled_test/test/metatest.dart
|
| diff --git a/pkg/scheduled_test/test/metatest.dart b/pkg/scheduled_test/test/metatest.dart
|
| index 6a3b76de46a52be33d845956704a57603bfe4560..0c7725d41d64dbf7770da1c8651b86a87ccd91e2 100644
|
| --- a/pkg/scheduled_test/test/metatest.dart
|
| +++ b/pkg/scheduled_test/test/metatest.dart
|
| @@ -12,7 +12,6 @@ library metatest;
|
| import 'dart:async';
|
| import 'dart:io';
|
| import 'dart:isolate';
|
| -import 'dart:platform' as platform;
|
|
|
| import 'package:path/path.dart' as path;
|
| import 'package:unittest/unittest.dart';
|
| @@ -120,7 +119,7 @@ void initMetatest(message) {
|
| /// describing the results of that test run.
|
| Future<Map> _runInIsolate(String description) {
|
| var replyPort = new ReceivePort();
|
| - return Isolate.spawnUri(platform.script, [], {
|
| + return Isolate.spawnUri(Uri.parse(Platform.script), [], {
|
| 'testToRun': description,
|
| 'replyTo': replyPort.sendPort
|
| }).then((_) {
|
|
|