| Index: dart/tests/standalone/vmservice/unknown_isolate_command_test.dart
 | 
| ===================================================================
 | 
| --- dart/tests/standalone/vmservice/unknown_isolate_command_test.dart	(revision 31530)
 | 
| +++ dart/tests/standalone/vmservice/unknown_isolate_command_test.dart	(working copy)
 | 
| @@ -10,7 +10,7 @@
 | 
|  
 | 
|  class ClassTableTest extends VmServiceRequestHelper {
 | 
|    ClassTableTest(port, id) :
 | 
| -      super('http://127.0.0.1:$port/isolates/$id/classes');
 | 
| +      super('http://127.0.0.1:$port/$id/classes');
 | 
|  
 | 
|    onRequestCompleted(Map reply) {
 | 
|      ClassTableHelper helper = new ClassTableHelper(reply);
 | 
| @@ -20,7 +20,7 @@
 | 
|  class IsolateListTest extends VmServiceRequestHelper {
 | 
|    IsolateListTest(port) : super('http://127.0.0.1:$port/isolates');
 | 
|  
 | 
| -  int _isolateId;
 | 
| +  String _isolateId;
 | 
|    onRequestCompleted(Map reply) {
 | 
|      IsolateListTester tester = new IsolateListTester(reply);
 | 
|      tester.checkIsolateCount(1);
 | 
| 
 |