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

Unified Diff: tests/standalone/io/process_exit_negative_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_exit_negative_test.dart
diff --git a/tests/standalone/io/process_exit_negative_test.dart b/tests/standalone/io/process_exit_negative_test.dart
index 418977f19b7e049bd3c8aec461210b2254df497b..645f7e66a18fa95a0966beb43ae6f5bfb1f6aac2 100644
--- a/tests/standalone/io/process_exit_negative_test.dart
+++ b/tests/standalone/io/process_exit_negative_test.dart
@@ -9,11 +9,10 @@ import "dart:io";
import "process_test_util.dart";
void main() {
- var fp = Process.start(getProcessTestFileName(),
- const ["0", "0", "0", "0"]);
+ var fp = Process.start(getProcessTestFileName(), const ["0", "0", "0", "0"]);
fp.then((p) {
p.exitCode.then((int s) {
- print(a.toString()); // Should cause a compilation error here.
+ print(a.toString()); // Should cause a compilation error here.
});
// Drain stdout and stderr.
p.stdout.listen((_) {});

Powered by Google App Engine
This is Rietveld 408576698