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

Unified Diff: tests/standalone/io/dart_std_io_pipe_script.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/dart_std_io_pipe_script.dart
diff --git a/tests/standalone/io/dart_std_io_pipe_script.dart b/tests/standalone/io/dart_std_io_pipe_script.dart
index 9ae4c776d4cf3433b2d25cd2178962b736f90067..1742df83791bd3b2622475ee459510caa03902c3 100644
--- a/tests/standalone/io/dart_std_io_pipe_script.dart
+++ b/tests/standalone/io/dart_std_io_pipe_script.dart
@@ -7,9 +7,9 @@
import "dart:io";
main(List<String> arguments) {
- if (stdioType(stdin) is !StdioType) exit(1);
- if (stdioType(stdout) is !StdioType) exit(1);
- if (stdioType(stderr) is !StdioType) exit(1);
+ if (stdioType(stdin) is! StdioType) exit(1);
+ if (stdioType(stdout) is! StdioType) exit(1);
+ if (stdioType(stderr) is! StdioType) exit(1);
if (stdioType(stdin).name != arguments[1]) {
throw stdioType(stdin).name;
}

Powered by Google App Engine
This is Rietveld 408576698