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

Unified Diff: sdk/lib/_internal/pub/test/serve/web_socket/unserve_directory_not_served_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/unserve_directory_not_served_test.dart
===================================================================
--- sdk/lib/_internal/pub/test/serve/web_socket/unserve_directory_not_served_test.dart (revision 34273)
+++ sdk/lib/_internal/pub/test/serve/web_socket/unserve_directory_not_served_test.dart (working copy)
@@ -21,8 +21,13 @@
pubServe();
// Unbind the directory.
- expectWebSocketError("unserveDirectory", {"path": "test"}, NOT_SERVED,
- 'Directory "test" is not bound to a server.');
+ expectWebSocketCall({
+ "command": "unserveDirectory",
+ "path": "test"
+ }, replyEquals: {
+ "code": "NOT_SERVED",
+ "error": 'Directory "test" is not bound to a server.'
+ });
endPubServe();
});

Powered by Google App Engine
This is Rietveld 408576698