| Index: tools/testing/dart/test_progress.dart
|
| diff --git a/tools/testing/dart/test_progress.dart b/tools/testing/dart/test_progress.dart
|
| index abba2c9ae00913c14c43ec505db11c0c8efd108f..012a7ec0be73100202743a052506659285e941c9 100644
|
| --- a/tools/testing/dart/test_progress.dart
|
| +++ b/tools/testing/dart/test_progress.dart
|
| @@ -178,7 +178,7 @@ class ExitCodeSetter extends EventListener {
|
|
|
| class FlakyLogWriter extends EventListener {
|
| void done(TestCase test) {
|
| - if (test.isFlaky && test.result != PASS) {
|
| + if (test.isFlaky && test.result != Expectation.PASS) {
|
| var buf = new StringBuffer();
|
| for (var l in _buildFailureOutput(test)) {
|
| buf.write("$l\n");
|
|
|