| Index: pkg/analyzer_plugin/test/integration/support/protocol_matchers.dart
|
| diff --git a/pkg/analyzer_plugin/test/integration/support/protocol_matchers.dart b/pkg/analyzer_plugin/test/integration/support/protocol_matchers.dart
|
| index 5d6c49d631ef13f83d9fd0c6f1b795b3528a5179..5c4d7933af9caf171dc0bf58b4540f4951bae58c 100644
|
| --- a/pkg/analyzer_plugin/test/integration/support/protocol_matchers.dart
|
| +++ b/pkg/analyzer_plugin/test/integration/support/protocol_matchers.dart
|
| @@ -17,11 +17,13 @@ import 'integration_tests.dart';
|
| * plugin.versionCheck params
|
| *
|
| * {
|
| + * "byteStorePath": String
|
| * "version": String
|
| * }
|
| */
|
| final Matcher isPluginVersionCheckParams = new LazyMatcher(() => new MatchesJsonObject(
|
| "plugin.versionCheck params", {
|
| + "byteStorePath": isString,
|
| "version": isString
|
| }));
|
|
|
| @@ -32,7 +34,7 @@ final Matcher isPluginVersionCheckParams = new LazyMatcher(() => new MatchesJson
|
| * "isCompatible": bool
|
| * "name": String
|
| * "version": String
|
| - * "email": optional String
|
| + * "contactInfo": optional String
|
| * "interestingFiles": List<String>
|
| * }
|
| */
|
| @@ -43,7 +45,7 @@ final Matcher isPluginVersionCheckResult = new LazyMatcher(() => new MatchesJson
|
| "version": isString,
|
| "interestingFiles": isListOf(isString)
|
| }, optionalFields: {
|
| - "email": isString
|
| + "contactInfo": isString
|
| }));
|
|
|
| /**
|
|
|