| Index: tests/standalone/io/test_runner_test.dart
|
| diff --git a/tests/standalone/io/test_runner_test.dart b/tests/standalone/io/test_runner_test.dart
|
| index d07558aaec936a88ad422bce429c2989a63c30ef..6887f4b0dec3075725d5314149b8107d478336f6 100644
|
| --- a/tests/standalone/io/test_runner_test.dart
|
| +++ b/tests/standalone/io/test_runner_test.dart
|
| @@ -22,13 +22,12 @@ class TestController {
|
| // Used as TestCase.completedCallback.
|
| static processCompletedTest(TestCase testCase) {
|
| numCompletedTests++;
|
| - CommandOutput output = testCase.lastCommandOutput;
|
| if (testCase.displayName == "fail-unexpected") {
|
| - if (!output.unexpectedOutput) {
|
| + if (!testCase.unexpectedOutput) {
|
| throw "Expected fail-unexpected";
|
| }
|
| } else {
|
| - if (output.unexpectedOutput) {
|
| + if (testCase.unexpectedOutput) {
|
| throw "Unexpected fail";
|
| }
|
| }
|
|
|