| 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;
|
| }
|
|
|