Index: tests/standalone/io/test_runner_exit_code_test.dart |
diff --git a/tests/standalone/io/test_runner_exit_code_test.dart b/tests/standalone/io/test_runner_exit_code_test.dart |
index 9799ebbd897740b9f42244e4ff1655cfff6708b2..ced3acca04b46354a2d0a7f103cc7007b88544b0 100644 |
--- a/tests/standalone/io/test_runner_exit_code_test.dart |
+++ b/tests/standalone/io/test_runner_exit_code_test.dart |
@@ -5,7 +5,7 @@ |
#import('dart:io'); |
void runTests(String executable, String script, Iterator iterator) { |
- if (iterator.hasNext()) { |
+ if (iterator.hasNext) { |
var progressIndicator = iterator.next(); |
Process.run(executable, [script, progressIndicator]).then((result) { |
Expect.equals(1, result.exitCode); |