| Index: pkg/analysis_server/test/protocol_test.dart
|
| diff --git a/pkg/analysis_server/test/protocol_test.dart b/pkg/analysis_server/test/protocol_test.dart
|
| index 93dde63709b9908debcdae31c9e9888191c0b4ec..6428c62020b39d0a66beecdb2cb82ef24b8ea1d2 100644
|
| --- a/pkg/analysis_server/test/protocol_test.dart
|
| +++ b/pkg/analysis_server/test/protocol_test.dart
|
| @@ -266,7 +266,8 @@ class ResponseTest {
|
| Response original = new Response('myId', result: {'foo': 'bar'});
|
| Response response = new Response.fromJson(original.toJson());
|
| expect(response.id, equals('myId'));
|
| - Map<String, Object> result = response.toJson()['result'];
|
| + Map<String, Object> result =
|
| + response.toJson()['result'] as Map<String, Object>;
|
| expect(result.length, equals(1));
|
| expect(result['foo'], equals('bar'));
|
| }
|
|
|