| Index: pkg/analysis_server/test/integration/protocol_matchers.dart
|
| diff --git a/pkg/analysis_server/test/integration/protocol_matchers.dart b/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| index e74d998a186d183c04919b87fd9f29f2da4e1bd8..633c3803e884a1b9abe206b3b8cfe00eb1d7bedf 100644
|
| --- a/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| +++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| @@ -62,8 +62,15 @@ final Matcher isServerSetSubscriptionsResult = isNull;
|
|
|
| /**
|
| * server.connected params
|
| + *
|
| + * {
|
| + * "version": String
|
| + * }
|
| */
|
| -final Matcher isServerConnectedParams = isNull;
|
| +final Matcher isServerConnectedParams = new LazyMatcher(() => new MatchesJsonObject(
|
| + "server.connected params", {
|
| + "version": isString
|
| + }));
|
|
|
| /**
|
| * server.error params
|
|
|