| Index: pkg/testing/lib/src/log.dart
|
| diff --git a/pkg/testing/lib/src/log.dart b/pkg/testing/lib/src/log.dart
|
| index b9e645c94b207d09d4559f6e7d91125667b8c774..5ff7cb85dc8dfba6cd23b0dc11459247a507fc10 100644
|
| --- a/pkg/testing/lib/src/log.dart
|
| +++ b/pkg/testing/lib/src/log.dart
|
| @@ -14,7 +14,7 @@ import 'suite.dart' show
|
| import 'test_description.dart' show
|
| TestDescription;
|
|
|
| -import 'test_dart/status_file_parser.dart' show
|
| +import 'expectation.dart' show
|
| Expectation;
|
|
|
| /// ANSI escape code for moving cursor one line up.
|
| @@ -106,7 +106,7 @@ void logUnexpectedResult(Suite suite, TestDescription description,
|
| Uri statusFile = suite.statusFile;
|
| if (statusFile != null) {
|
| String path = statusFile.toFilePath();
|
| - if (result.outcome == Expectation.PASS) {
|
| + if (result.outcome == Expectation.Pass) {
|
| print("The test unexpectedly passed, please update $path.");
|
| } else {
|
| print("The test had the outcome ${result.outcome}, but the status file "
|
|
|