| Index: tests/standalone/io/process_check_arguments_test.dart | 
| diff --git a/tests/standalone/io/process_check_arguments_test.dart b/tests/standalone/io/process_check_arguments_test.dart | 
| index a5ce40c86363f772942e60b1bb50a69d97cd7c4a..17703b544bee3688f84cfad54dd8a996b917904b 100644 | 
| --- a/tests/standalone/io/process_check_arguments_test.dart | 
| +++ b/tests/standalone/io/process_check_arguments_test.dart | 
| @@ -6,7 +6,7 @@ | 
| #source("process_test_util.dart"); | 
|  | 
| test(args) { | 
| -  Process process = new Process.start(new Options().executable, args); | 
| +  InteractiveProcess process = Process.start(new Options().executable, args); | 
| // Wait for the process to exit and then check result. | 
| process.onExit = (exitCode) { | 
| Expect.equals(0, exitCode); | 
|  |