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

Unified Diff: tests/standalone/vmservice/isolate_bad_object_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_bad_object_test.dart
diff --git a/tests/standalone/vmservice/isolate_bad_object_test.dart b/tests/standalone/vmservice/isolate_bad_object_test.dart
index 314c6081146188f220b43a271dd342838706d64a..0970c3e58fa33db6f9b182e76911c5f2088c4efc 100644
--- a/tests/standalone/vmservice/isolate_bad_object_test.dart
+++ b/tests/standalone/vmservice/isolate_bad_object_test.dart
@@ -10,7 +10,7 @@ import 'package:expect/expect.dart';
class NullCollectionTest extends VmServiceRequestHelper {
NullCollectionTest(port, id) :
- super('http://127.0.0.1:$port/isolates/$id/objects/50');
+ super('http://127.0.0.1:$port/$id/objects/50');
onRequestCompleted(Map reply) {
Expect.equals('null', reply['type']);
@@ -19,7 +19,7 @@ class NullCollectionTest extends VmServiceRequestHelper {
class BadCollectionTest extends VmServiceRequestHelper {
BadCollectionTest(port, id) :
- super('http://127.0.0.1:$port/isolates/$id/objects');
+ super('http://127.0.0.1:$port/$id/objects');
onRequestCompleted(Map reply) {
Expect.equals('Error', reply['type']);

Powered by Google App Engine
This is Rietveld 408576698