| Index: tests/isolate/spawn_uri_vm_test.dart
|
| diff --git a/tests/isolate/spawn_uri_vm_test.dart b/tests/isolate/spawn_uri_vm_test.dart
|
| index e5510a5a1180a9848d9ba35b3e5b1993e60cb8da..094f3253a0445ecc1eeaf8450e95c19fc768c6d1 100644
|
| --- a/tests/isolate/spawn_uri_vm_test.dart
|
| +++ b/tests/isolate/spawn_uri_vm_test.dart
|
| @@ -7,6 +7,7 @@
|
| // other isolate's code.
|
| // OtherScripts=spawn_uri_child_isolate.dart
|
| library spawn_tests;
|
| +
|
| import 'dart:isolate';
|
| import 'package:unittest/unittest.dart';
|
|
|
| @@ -17,7 +18,7 @@ main() {
|
| expect(msg, equals('re: hi'));
|
| }));
|
|
|
| - Isolate.spawnUri(Uri.parse('spawn_uri_child_isolate.dart'),
|
| - ['hi'], port.sendPort);
|
| + Isolate.spawnUri(
|
| + Uri.parse('spawn_uri_child_isolate.dart'), ['hi'], port.sendPort);
|
| });
|
| }
|
|
|