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

Unified Diff: sdk/lib/_internal/pub/test/serve/web_socket/path_to_urls_multiple_test.dart

Issue 209123003: Revert r34269, as it broke the editor build (Closed) Base URL: http://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: 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();

Powered by Google App Engine
This is Rietveld 408576698