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

Unified Diff: sdk/lib/_internal/pub/test/serve/web_socket/serve_directory_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/serve_directory_test.dart
===================================================================
--- sdk/lib/_internal/pub/test/serve/web_socket/serve_directory_test.dart (revision 34273)
+++ sdk/lib/_internal/pub/test/serve/web_socket/serve_directory_test.dart (working copy)
@@ -26,9 +26,11 @@
pubServe(args: ["web"]);
// Bind the new directory.
- expectWebSocketResult("serveDirectory", {"path": "test"}, {
- "url": matches(r"http://127\.0\.0\.1:\d+")
- }).then((response) {
+ expectWebSocketCall({
+ "command": "serveDirectory",
+ "path": "test"
+ }, replyMatches: {"url": matches(r"http://127\.0\.0\.1:\d+")})
+ .then((response) {
var url = Uri.parse(response["url"]);
registerServerPort("test", url.port);
});

Powered by Google App Engine
This is Rietveld 408576698