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

Unified Diff: tests/html/history_test.dart

Issue 218273002: Upgrading tests with unittest deprecations (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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: tests/html/history_test.dart
diff --git a/tests/html/history_test.dart b/tests/html/history_test.dart
index 7ee08cec4b53f50132511e5fd42b31997f5ade0f..f8fd54786661e9deb06663223a38aaa3554d0afe 100644
--- a/tests/html/history_test.dart
+++ b/tests/html/history_test.dart
@@ -43,8 +43,8 @@ main() {
expect(window.location.href.endsWith('dummy2'), isTrue);
// Need to wait a frame or two to let the pushState events occur.
- new Timer(const Duration(milliseconds: 100), expectAsync0(() {
- window.onPopState.first.then(expectAsync1((_){
+ new Timer(const Duration(milliseconds: 100), expectAsync(() {
+ window.onPopState.first.then(expectAsync((_){
expect(window.history.length, length);
expect(window.location.href.endsWith('dummy1'), isTrue);
}));

Powered by Google App Engine
This is Rietveld 408576698