Chromium Code Reviews

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

Issue 152593002: Version 1.2.0-dev.3.1 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/dart/
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « tests/compiler/dart2js/analyze_helper.dart ('k') | tests/compiler/dart2js/check_members_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/compiler/dart2js/analyze_only_test.dart
===================================================================
--- tests/compiler/dart2js/analyze_only_test.dart (revision 32236)
+++ tests/compiler/dart2js/analyze_only_test.dart (working copy)
@@ -54,9 +54,9 @@
[],
(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(
« no previous file with comments | « tests/compiler/dart2js/analyze_helper.dart ('k') | tests/compiler/dart2js/check_members_test.dart » ('j') | no next file with comments »

Powered by Google App Engine