Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1552)

Unified Diff: tests/standalone/io/process_pid_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698