Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(490)

Unified Diff: pkg/analyzer_plugin/test/integration/support/protocol_matchers.dart

Issue 2677663003: Update plugin spec (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
}));
/**

Powered by Google App Engine
This is Rietveld 408576698