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

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

Issue 207563002: Move pub's web socket API over to use JSON RPC 2.0. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: code review 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/unserve_directory_not_served_test.dart
diff --git a/sdk/lib/_internal/pub/test/serve/web_socket/unserve_directory_not_served_test.dart b/sdk/lib/_internal/pub/test/serve/web_socket/unserve_directory_not_served_test.dart
index 7d80601aecfd6f9f81b61566a502175b206e953a..1f2273e439a1d2e90fd476f2f5b6b52f3733dba8 100644
--- a/sdk/lib/_internal/pub/test/serve/web_socket/unserve_directory_not_served_test.dart
+++ b/sdk/lib/_internal/pub/test/serve/web_socket/unserve_directory_not_served_test.dart
@@ -21,13 +21,8 @@ main() {
pubServe();
// Unbind the directory.
- expectWebSocketCall({
- "command": "unserveDirectory",
- "path": "test"
- }, replyEquals: {
- "code": "NOT_SERVED",
- "error": 'Directory "test" is not bound to a server.'
- });
+ expectWebSocketError("unserveDirectory", {"path": "test"}, NOT_SERVED,
+ 'Directory "test" is not bound to a server.');
endPubServe();
});

Powered by Google App Engine
This is Rietveld 408576698