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

Unified Diff: dart/pkg/unittest/lib/unittest.dart

Issue 36913002: test.py: Sending JSON between test_controller.js <-> browser_controller (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 2 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: dart/pkg/unittest/lib/unittest.dart
diff --git a/dart/pkg/unittest/lib/unittest.dart b/dart/pkg/unittest/lib/unittest.dart
index f9643fb68485236fa8539ba694ed92a639133811..6560dcc18dc2203a63175cd270864a8ddb109585 100644
--- a/dart/pkg/unittest/lib/unittest.dart
+++ b/dart/pkg/unittest/lib/unittest.dart
@@ -785,8 +785,7 @@ void _completeTests() {
}
}
_config.onSummary(passed, failed, errors, testCases, _uncaughtErrorMessage);
- _config.onDone(passed > 0 && failed == 0 && errors == 0 &&
- _uncaughtErrorMessage == null);
+ _config.onDone(failed == 0 && errors == 0 && _uncaughtErrorMessage == null);
_initialized = false;
}

Powered by Google App Engine
This is Rietveld 408576698