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

Unified Diff: tests/standalone/vmservice/websocket_client_test.dart

Issue 305603004: Observatory now uses websockets to communicate with the vm. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 7 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: tests/standalone/vmservice/websocket_client_test.dart
diff --git a/tests/standalone/vmservice/websocket_client_test.dart b/tests/standalone/vmservice/websocket_client_test.dart
index bf8fac1d8b3273a6487601c71da4784957bcb723..ebf75b3842c729ea0b7797ffca6c97afac9ab9e1 100644
--- a/tests/standalone/vmservice/websocket_client_test.dart
+++ b/tests/standalone/vmservice/websocket_client_test.dart
@@ -30,9 +30,9 @@ class ClientsRequestTest extends ServiceWebSocketRequestHelper {
runTest() {
// Send a request for clients with 'cli' sequence id.
- sendMessage('cli', ['clients']);
+ sendMessage('cli', 'clients');
// Send a request for vm info with 'vm' sequence id.
- sendMessage('vm', ['vm']);
+ sendMessage('vm', 'vm');
}
}

Powered by Google App Engine
This is Rietveld 408576698