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

Unified Diff: dart/tests/standalone/vmservice/isolate_bad_class_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_bad_class_test.dart
===================================================================
--- dart/tests/standalone/vmservice/isolate_bad_class_test.dart (revision 31530)
+++ dart/tests/standalone/vmservice/isolate_bad_class_test.dart (working copy)
@@ -10,16 +10,16 @@
class NullCollectionTest extends VmServiceRequestHelper {
NullCollectionTest(port, id, collection) :
- super('http://127.0.0.1:$port/isolates/$id/$collection/9999999');
+ super('http://127.0.0.1:$port/$id/$collection/9999999');
onRequestCompleted(Map reply) {
- Expect.equals('null', reply['type']);
+ Expect.equals('Error', reply['type']);
}
}
class BadCollectionTest extends VmServiceRequestHelper {
BadCollectionTest(port, id, collection) :
- super('http://127.0.0.1:$port/isolates/$id/$collection');
+ super('http://127.0.0.1:$port/$id/$collection');
onRequestCompleted(Map reply) {
Expect.equals('Error', reply['type']);
@@ -29,7 +29,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/debugger/local_function_test.dart ('k') | dart/tests/standalone/vmservice/isolate_bad_object_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698