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

Unified Diff: tests/standalone/io/process_run_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_run_test.dart
diff --git a/tests/standalone/io/process_run_test.dart b/tests/standalone/io/process_run_test.dart
index 2e07d0d5266793cf2f6956ca3ecf37c0afd02aa8..cb634557def86124cf7e328699c1f7f8d762f98c 100644
--- a/tests/standalone/io/process_run_test.dart
+++ b/tests/standalone/io/process_run_test.dart
@@ -8,29 +8,24 @@ import "package:expect/expect.dart";
import "process_test_util.dart";
-
void testProcessRunBinaryOutput() {
- var result = Process.runSync(getProcessTestFileName(),
- const ["0", "0", "0", "0"],
- stdoutEncoding: null);
+ var result = Process.runSync(
+ getProcessTestFileName(), const ["0", "0", "0", "0"],
+ stdoutEncoding: null);
Expect.isTrue(result.stdout is List<int>);
Expect.isTrue(result.stderr is String);
- result = Process.runSync(getProcessTestFileName(),
- const ["0", "0", "0", "0"],
- stderrEncoding: null);
+ result = Process.runSync(getProcessTestFileName(), const ["0", "0", "0", "0"],
+ stderrEncoding: null);
Expect.isTrue(result.stdout is String);
Expect.isTrue(result.stderr is List<int>);
- result = Process.runSync(getProcessTestFileName(),
- const ["0", "0", "0", "0"],
- stdoutEncoding: null,
- stderrEncoding: null);
+ result = Process.runSync(getProcessTestFileName(), const ["0", "0", "0", "0"],
+ stdoutEncoding: null, stderrEncoding: null);
Expect.isTrue(result.stdout is List<int>);
Expect.isTrue(result.stderr is List<int>);
}
-
void main() {
testProcessRunBinaryOutput();
}

Powered by Google App Engine
This is Rietveld 408576698