Chromium Code Reviews

Unified Diff: pkg/unittest/test/missing_tick_test.dart

Issue 193643003: pkg/unittest: support up to 6 arguments in expectAsync[Until] (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: nit Created 6 years, 9 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/test/missing_tick_test.dart
diff --git a/pkg/unittest/test/missing_tick_test.dart b/pkg/unittest/test/missing_tick_test.dart
index 92ab8914704d7eac0c2491d2fbf3d1c307990fdb..19c5b8946ebf00754d92cbce4a43e308cadb1f14 100644
--- a/pkg/unittest/test/missing_tick_test.dart
+++ b/pkg/unittest/test/missing_tick_test.dart
@@ -10,7 +10,7 @@ main() {
config.timeout = const Duration(seconds: 2);
group('Broken', () {
test('test that should time out', () {
- expectAsync0(() {});
+ expectAsync(() {});
});
});
}

Powered by Google App Engine