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

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

Issue 98253009: Refactor VM service IDs (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years 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_library_test.dart
diff --git a/tests/standalone/vmservice/isolate_library_test.dart b/tests/standalone/vmservice/isolate_library_test.dart
index d27f403bd09e3690545a663a7358fc3b24478c51..a42d8b1862ade11031a8c21b74016a41094a65bc 100644
--- a/tests/standalone/vmservice/isolate_library_test.dart
+++ b/tests/standalone/vmservice/isolate_library_test.dart
@@ -10,7 +10,7 @@ import 'package:expect/expect.dart';
class LibraryTest extends VmServiceRequestHelper {
LibraryTest(port, id, libId) :
- super('http://127.0.0.1:$port/isolates/$id/objects/$libId');
+ super('http://127.0.0.1:$port/$id/$libId');
onRequestCompleted(Map reply) {
Expect.equals('Library', reply['type']);
@@ -20,7 +20,7 @@ class LibraryTest extends VmServiceRequestHelper {
class RootLibraryTest extends VmServiceRequestHelper {
RootLibraryTest(port, id) :
- super('http://127.0.0.1:$port/isolates/$id/library');
+ super('http://127.0.0.1:$port/$id/library');
int _libId;
onRequestCompleted(Map reply) {

Powered by Google App Engine
This is Rietveld 408576698