| Index: tests/standalone/io/snapshot_fail_test.dart
|
| diff --git a/tests/standalone/io/snapshot_fail_test.dart b/tests/standalone/io/snapshot_fail_test.dart
|
| index 9385b94f9d0ee42766267f8fb2c68605387b2f2b..b5b681d8f9595b8d17c8194ee43f5e8b0834da8e 100644
|
| --- a/tests/standalone/io/snapshot_fail_test.dart
|
| +++ b/tests/standalone/io/snapshot_fail_test.dart
|
| @@ -9,15 +9,14 @@ import "package:expect/expect.dart";
|
| import "dart:async";
|
| import "dart:io";
|
|
|
| -
|
| main() {
|
| // Try to generate a snapshot.
|
| File thisscript = new File.fromUri(Platform.script);
|
| Directory dir = thisscript.parent;
|
| String snapshot = "${dir.path}/dummy.snapshot";
|
| String script = "${dir.path}/snapshot_fail_script.dart";
|
| - var pr = Process.runSync(Platform.executable,
|
| - ["--snapshot=$snapshot", script]);
|
| + var pr =
|
| + Process.runSync(Platform.executable, ["--snapshot=$snapshot", script]);
|
|
|
| // There should be no dummy.snapshot file created.
|
| File dummy = new File(snapshot);
|
|
|