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

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

Issue 119673004: Version 1.1.0-dev.5.2 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 6 years, 11 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: dart/tests/standalone/vmservice/isolate_class_field_test.dart
===================================================================
--- dart/tests/standalone/vmservice/isolate_class_field_test.dart (revision 31530)
+++ dart/tests/standalone/vmservice/isolate_class_field_test.dart (working copy)
@@ -10,8 +10,8 @@
class BananaClassTest {
int port;
- int isolate_id;
- int class_id;
+ String isolate_id;
+ String class_id;
BananaClassTest(this.port, this.isolate_id, this.class_id);
_testFieldA(Map field) {
@@ -75,8 +75,8 @@
class BadBananaClassTest {
int port;
- int isolate_id;
- int class_id;
+ String isolate_id;
+ String class_id;
BadBananaClassTest(this.port, this.isolate_id, this.class_id);
_testFieldV(Map field) {
@@ -140,10 +140,10 @@
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/');
- int banana_class_id;
- int bad_banana_class_id;
+ String banana_class_id;
+ String bad_banana_class_id;
onRequestCompleted(Map reply) {
ClassTableHelper helper = new ClassTableHelper(reply);
@@ -157,7 +157,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);
« no previous file with comments | « dart/tests/standalone/vmservice/isolate_bad_object_test.dart ('k') | dart/tests/standalone/vmservice/isolate_class_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698