Index: sdk/lib/_internal/pub/test/serve/web_socket/path_to_urls_multiple_test.dart |
=================================================================== |
--- sdk/lib/_internal/pub/test/serve/web_socket/path_to_urls_multiple_test.dart (revision 34273) |
+++ sdk/lib/_internal/pub/test/serve/web_socket/path_to_urls_multiple_test.dart (working copy) |
@@ -30,19 +30,25 @@ |
pubServe(args: ["web", path.join("web", "sub"), "test"]); |
- expectWebSocketResult("pathToUrls", { |
- "path": path.join("web", "index.html") |
- }, { |
- "urls": [getServerUrl("web", "index.html")] |
- }); |
+ schedule(() { |
+ expectWebSocketCall({ |
+ "command": "pathToUrls", |
+ "path": path.join("web", "index.html") |
+ }, replyEquals: { |
+ "urls": [ |
+ getServerUrl("web", "index.html") |
+ ] |
+ }); |
- expectWebSocketResult("pathToUrls", { |
- "path": path.join("web", "sub", "bar.html") |
- }, { |
- "urls": [ |
- getServerUrl("web", "sub/bar.html"), |
- getServerUrl(path.join("web", "sub"), "bar.html") |
- ] |
+ expectWebSocketCall({ |
+ "command": "pathToUrls", |
+ "path": path.join("web", "sub", "bar.html") |
+ }, replyEquals: { |
+ "urls": [ |
+ getServerUrl("web", "sub/bar.html"), |
+ getServerUrl(path.join("web", "sub"), "bar.html") |
+ ] |
+ }); |
}); |
endPubServe(); |