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

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

Issue 2885993004: Pass the sdk path to plugins (Closed)
Patch Set: Created 3 years, 7 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 87dd5a4385bc1463788e4620a2f4f25c85356e1b..ae5a82126dec568efe5e01b5ce2188db53881050 100644
--- a/pkg/analyzer_plugin/test/integration/support/protocol_matchers.dart
+++ b/pkg/analyzer_plugin/test/integration/support/protocol_matchers.dart
@@ -1410,12 +1410,13 @@ final Matcher isPluginShutdownResult = isNull;
*
* {
* "byteStorePath": String
+ * "sdkPath": String
* "version": String
* }
*/
final Matcher isPluginVersionCheckParams = new LazyMatcher(() =>
new MatchesJsonObject("plugin.versionCheck params",
- {"byteStorePath": isString, "version": isString}));
+ {"byteStorePath": isString, "sdkPath": isString, "version": isString}));
/**
* plugin.versionCheck result

Powered by Google App Engine
This is Rietveld 408576698