Chromium Code Reviews

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

Issue 12393017: Fix issue with async callbacks that get called synchronously while running test case function causi… (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 10 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
Index: pkg/unittest/lib/src/expect.dart
===================================================================
--- pkg/unittest/lib/src/expect.dart (revision 19336)
+++ pkg/unittest/lib/src/expect.dart (working copy)
@@ -25,7 +25,7 @@
* used safely. For example, the unittest library will set this
* to be expectAsync1. By default this is an identity function.
*/
-Function wrapAsync = (f) => f;
+Function wrapAsync = (f, [id]) => f;
/**
* This is the main assertion function. It asserts that [actual]

Powered by Google App Engine