| Index: tests/standalone/io/test_extension_fail_test.dart
|
| diff --git a/tests/standalone/io/test_extension_fail_test.dart b/tests/standalone/io/test_extension_fail_test.dart
|
| index 0226783c3a8387048058f1a4d4b1761105cfc82a..79ade79dec014e85d9cc1a4d7ba6d584ff9a0bd8 100644
|
| --- a/tests/standalone/io/test_extension_fail_test.dart
|
| +++ b/tests/standalone/io/test_extension_fail_test.dart
|
| @@ -54,7 +54,7 @@ void main() {
|
| }).then((_) {
|
| Path script = testDirectory.append('test_extension_fail_tester.dart');
|
| return Process.run(options.executable, [script.toNativePath()]);
|
| - }).subscribe(onValue: (ProcessResult result) {
|
| + }).listen((ProcessResult result) {
|
| print("ERR: ${result.stderr}\n\n");
|
| print("OUT: ${result.stdout}\n\n");
|
| Expect.equals(255, result.exitCode);
|
|
|