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

Unified Diff: pkg/analysis_server/test/integration/protocol_matchers.dart

Issue 1509033003: Promote `diagnostic.getDiagnostics()` (#25061). (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years 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/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 2a0cd06185534ec25acc6dd21071ca3dffc25dd2..cb2f80465a490094f7b1a3439650c49df391e8e4 100644
--- a/pkg/analysis_server/test/integration/protocol_matchers.dart
+++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
@@ -1307,7 +1307,6 @@ final Matcher isCompletionSuggestionKind = new MatchesEnum("CompletionSuggestion
* "explicitFileCount": int
* "implicitFileCount": int
* "workItemQueueLength": int
- * "workItemQueueLengthAverage": String
* "cacheEntryExceptions": List<String>
* }
*/
@@ -1317,7 +1316,6 @@ final Matcher isContextData = new LazyMatcher(() => new MatchesJsonObject(
"explicitFileCount": isInt,
"implicitFileCount": isInt,
"workItemQueueLength": isInt,
- "workItemQueueLengthAverage": isString,
"cacheEntryExceptions": isListOf(isString)
}));

Powered by Google App Engine
This is Rietveld 408576698