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

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

Issue 116193003: Fix checked mode failures in vmservice tests (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_function_test.dart
diff --git a/tests/standalone/vmservice/isolate_function_test.dart b/tests/standalone/vmservice/isolate_function_test.dart
index f2fccbe00f2c5501f7fe6ac9364bbd125e248268..28da110c548a77a1d1cbddaf24709e1848c28753 100644
--- a/tests/standalone/vmservice/isolate_function_test.dart
+++ b/tests/standalone/vmservice/isolate_function_test.dart
@@ -33,8 +33,8 @@ class StackTraceTest extends VmServiceRequestHelper {
StackTraceTest(port, id) :
super('http://127.0.0.1:$port/$id/stacktrace');
- int _aId;
- int _cId;
+ String _aId;
+ String _cId;
onRequestCompleted(Map reply) {
Expect.equals('StackTrace', reply['type']);
List members = reply['members'];
@@ -48,7 +48,7 @@ class StackTraceTest extends VmServiceRequestHelper {
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(2);
« no previous file with comments | « tests/standalone/vmservice/isolate_echo_test.dart ('k') | tests/standalone/vmservice/isolate_library_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698