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

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

Issue 24075002: Expose field data, use class id, and merge all collections into "objects" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 3 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/isolate_function_test.dart
diff --git a/tests/standalone/vmservice/isolate_function_test.dart b/tests/standalone/vmservice/isolate_function_test.dart
index 369616b62fcc422e0ceae7c0d634b9d591a5265a..4831b61dc03b4d0cf742072bddb9c362f57cf6a5 100644
--- a/tests/standalone/vmservice/isolate_function_test.dart
+++ b/tests/standalone/vmservice/isolate_function_test.dart
@@ -10,17 +10,17 @@ import 'package:expect/expect.dart';
class MethodTest extends VmServiceRequestHelper {
MethodTest(port, id, functionId) :
- super('http://127.0.0.1:$port/isolates/$id/functions/$functionId');
+ super('http://127.0.0.1:$port/isolates/$id/objects/$functionId');
onRequestCompleted(Map reply) {
Expect.equals('Function', reply['type']);
- Expect.equals('C.c', reply['name']);
+ Expect.equals('C.c', reply['user_name']);
Expect.equals(false, reply['is_static']);
}
}
class FunctionTest extends VmServiceRequestHelper {
FunctionTest(port, id, functionId) :
- super('http://127.0.0.1:$port/isolates/$id/functions/$functionId');
+ super('http://127.0.0.1:$port/isolates/$id/objects/$functionId');
onRequestCompleted(Map reply) {
Expect.equals('Function', reply['type']);
« no previous file with comments | « tests/standalone/vmservice/isolate_code_test.dart ('k') | tests/standalone/vmservice/isolate_library_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698