Index: tests/standalone/io/process_pid_test.dart |
diff --git a/tests/standalone/io/process_pid_test.dart b/tests/standalone/io/process_pid_test.dart |
index b29c7f560e0479a05c1461340e5325a0d1141495..1a8b69a58cde4bdb2d64600fc17b2015a6f453ab 100644 |
--- a/tests/standalone/io/process_pid_test.dart |
+++ b/tests/standalone/io/process_pid_test.dart |
@@ -14,8 +14,8 @@ main() { |
asyncStart(); |
Expect.isTrue(pid > 0); |
var futures = []; |
- futures.add(Process.start(Platform.executable,['--version'])); |
- futures.add(Process.run(Platform.executable,['--version'])); |
+ futures.add(Process.start(Platform.executable, ['--version'])); |
+ futures.add(Process.run(Platform.executable, ['--version'])); |
Future.wait(futures).then((results) { |
Expect.isTrue(results[0].pid > 0); |
Expect.isTrue(results[1].pid > 0); |