| Index: tests/standalone/vmservice/test_helper.dart
|
| diff --git a/tests/standalone/vmservice/test_helper.dart b/tests/standalone/vmservice/test_helper.dart
|
| index 1eb81aed13789f00e7f3b38f8249bab8fc091536..325ecb1e2fd7e578af9735ed98d5cc0949a1abb8 100644
|
| --- a/tests/standalone/vmservice/test_helper.dart
|
| +++ b/tests/standalone/vmservice/test_helper.dart
|
| @@ -7,7 +7,6 @@ library vmservice_test_helper;
|
| import 'dart:async';
|
| import 'dart:convert';
|
| import 'dart:io';
|
| -import 'dart:json' as JSON;
|
| import 'package:expect/expect.dart';
|
|
|
| abstract class VmServiceRequestHelper {
|
| @@ -45,7 +44,7 @@ abstract class VmServiceRequestHelper {
|
| print('** Response: $replyAsString');
|
| var reply;
|
| try {
|
| - reply = JSON.parse(replyAsString);
|
| + reply = JSON.decode(replyAsString);
|
| } catch (e) {
|
| onRequestFailed(e);
|
| return;
|
|
|