| Index: tests/standalone/io/test_runner_exit_code_script.dart
|
| diff --git a/tests/standalone/io/test_runner_exit_code_script.dart b/tests/standalone/io/test_runner_exit_code_script.dart
|
| index 1cfe6036dfdf9b88fdfcc20f13026c3e31610adc..f503d1b669c2a40ca62c333c1420048cb52ef668 100644
|
| --- a/tests/standalone/io/test_runner_exit_code_script.dart
|
| +++ b/tests/standalone/io/test_runner_exit_code_script.dart
|
| @@ -9,8 +9,8 @@ import "../../../tools/testing/dart/test_progress.dart";
|
| import "../../../tools/testing/dart/test_runner.dart";
|
| import "../../../tools/testing/dart/test_options.dart";
|
|
|
| -main() {
|
| - var progressType = new Options().arguments[0];
|
| +main(List<String> arguments) {
|
| + var progressType = arguments[0];
|
| // Build a progress indicator.
|
| var startTime = new DateTime.now();
|
| var progress =
|
|
|