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

Unified Diff: tests/standalone/vmservice/test_helper.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/test_helper.dart
diff --git a/tests/standalone/vmservice/test_helper.dart b/tests/standalone/vmservice/test_helper.dart
index fde93e047f96ddf31426e2b5aad30dd9d07c1fd9..95916478ed31c090bb32e9089fdc5bf6ffdc0967 100644
--- a/tests/standalone/vmservice/test_helper.dart
+++ b/tests/standalone/vmservice/test_helper.dart
@@ -39,10 +39,10 @@ abstract class ServiceWebSocketRequestHelper {
void onResponse(var seq, Map response);
void runTest();
- Future sendMessage(var seq, List<String> path) {
+ Future sendMessage(var seq, String request) {
var map = {
'seq': seq,
- 'path': path
+ 'request': request
};
var message = JSON.encode(map);
_socket.add(message);

Powered by Google App Engine
This is Rietveld 408576698