| 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 487d6a7a8b5d6a5326ed4640546a48f1370576bc..90c08c4bf25527ec190145e2b0d97f313b55b4e6 100644
|
| --- a/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| +++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| @@ -65,11 +65,13 @@ final Matcher isServerSetSubscriptionsResult = isNull;
|
| *
|
| * {
|
| * "version": String
|
| + * "pid": String
|
| * }
|
| */
|
| final Matcher isServerConnectedParams = new LazyMatcher(() => new MatchesJsonObject(
|
| "server.connected params", {
|
| - "version": isString
|
| + "version": isString,
|
| + "pid": isString
|
| }));
|
|
|
| /**
|
|
|