| Index: tests/standalone/src/ProcessStderrTest.dart
|
| diff --git a/tests/standalone/src/ProcessStderrTest.dart b/tests/standalone/src/ProcessStderrTest.dart
|
| index 80dfc269b2b4da6a572d425ff8cda6169118f440..86161b707f5e87919e0fd54e14f5037415af863a 100644
|
| --- a/tests/standalone/src/ProcessStderrTest.dart
|
| +++ b/tests/standalone/src/ProcessStderrTest.dart
|
| @@ -22,8 +22,8 @@ class ProcessStderrTest {
|
| }
|
| buffer[BUFFERSIZE - 1] = 10;
|
|
|
| - SocketInputStream input = process.stderrStream;
|
| - SocketOutputStream output = process.stdinStream;
|
| + InputStream input = process.stderr;
|
| + OutputStream output = process.stdin;
|
|
|
| process.start();
|
|
|
|
|