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

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

Issue 208703003: Use the right name for the OldWebSocketApi constructor. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: roll forward web socket change 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
diff --git a/sdk/lib/_internal/pub/test/serve/web_socket/serve_directory_test.dart b/sdk/lib/_internal/pub/test/serve/web_socket/serve_directory_test.dart
index 876142f0de4a0e3407241ce2ca28e6534fad2709..a3de26affa8fb1b21fe32cf613b26e547aad7f27 100644
--- a/sdk/lib/_internal/pub/test/serve/web_socket/serve_directory_test.dart
+++ b/sdk/lib/_internal/pub/test/serve/web_socket/serve_directory_test.dart
@@ -26,11 +26,9 @@ main() {
pubServe(args: ["web"]);
// Bind the new directory.
- expectWebSocketCall({
- "command": "serveDirectory",
- "path": "test"
- }, replyMatches: {"url": matches(r"http://127\.0\.0\.1:\d+")})
- .then((response) {
+ expectWebSocketResult("serveDirectory", {"path": "test"}, {
+ "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