Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1495)

Unified Diff: tests/compiler/dart2js/analyze_only_test.dart

Issue 140803002: Perform override and inheritance checks. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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(

Powered by Google App Engine
This is Rietveld 408576698