Index: tests/html/postmessage_structured_test.dart |
diff --git a/tests/html/postmessage_structured_test.dart b/tests/html/postmessage_structured_test.dart |
index c41c33500cd951a8e743e0e225188219a866b9e0..c586fd9694a6354b2f2d4dfbf0f6b90493392bb3 100644 |
--- a/tests/html/postmessage_structured_test.dart |
+++ b/tests/html/postmessage_structured_test.dart |
@@ -38,7 +38,7 @@ main() { |
"""; |
var completed = false; |
var subscription = null; |
- subscription = window.onMessage.listen(expectAsyncUntil1( |
+ subscription = window.onMessage.listen(expectAsyncUntil( |
(e) { |
var data = e.data; |
if (data is String) return; // Messages from unit test protocol. |
@@ -65,7 +65,7 @@ main() { |
"""; |
var completed = false; |
var subscription = null; |
- subscription = window.onMessage.listen(expectAsyncUntil1( |
+ subscription = window.onMessage.listen(expectAsyncUntil( |
(e) { |
var data = e.data; |
if (data is String) return; // Messages from unit test protocol. |
@@ -95,7 +95,7 @@ main() { |
"""; |
var completed = false; |
var subscription = null; |
- subscription = window.onMessage.listen(expectAsyncUntil1( |
+ subscription = window.onMessage.listen(expectAsyncUntil( |
(e) { |
var data = e.data; |
if (data is String) return; // Messages from unit test protocol. |