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

Unified Diff: pkg/unittest/unittest.dart

Issue 11367038: Fix missing argument in unittest (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/unittest/unittest.dart
diff --git a/pkg/unittest/unittest.dart b/pkg/unittest/unittest.dart
index 73b82a2dd1a3ef7f04313f1989ef0b8630c60e13..4f7bdf0df273397b55f12ebdd0df6f7a1d7e0056 100644
--- a/pkg/unittest/unittest.dart
+++ b/pkg/unittest/unittest.dart
@@ -656,7 +656,7 @@ void _handleCallbackFunctionComplete(testNum) {
_defer(() {
if (_currentTest != testNum) {
if (_tests[testNum].result == PASS) {
- _tests[testNum].error("Unexpected extra callbacks");
+ _tests[testNum].error("Unexpected extra callbacks", '');
}
return; // Extraneous callback.
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698