| Index: tests/compiler/dart2js/analyze_only_test.dart
|
| diff --git a/tests/compiler/dart2js/analyze_only_test.dart b/tests/compiler/dart2js/analyze_only_test.dart
|
| index e189790d16e941e7aa32631dff3733b4d81904e6..edc0d4cfc76bf1cf73eaee30091a0b8a04e39bda 100644
|
| --- a/tests/compiler/dart2js/analyze_only_test.dart
|
| +++ b/tests/compiler/dart2js/analyze_only_test.dart
|
| @@ -54,9 +54,9 @@ main() {
|
| [],
|
| (String code, List errors, List warnings) {
|
| Expect.isNull(code);
|
| - Expect.equals(1, errors.length);
|
| + Expect.equals(1, errors.length, 'errors=$errors');
|
| Expect.equals("Error: Could not find 'main'.", errors[0].toString());
|
| - Expect.isTrue(warnings.isEmpty);
|
| + Expect.isTrue(warnings.isEmpty, 'warnings=$warnings');
|
| });
|
|
|
| runCompiler(
|
|
|