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

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

Issue 481533002: (TBR) Fix the build (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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
« no previous file with comments | « pkg/analysis_server/test/integration/integration_test_methods.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 2d6901cca508401c3a553d32b595d662c9997381..5e1588d88de6e0aad4d73f256636b2333f07d3ad 100644
--- a/pkg/analysis_server/test/integration/protocol_matchers.dart
+++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
@@ -652,7 +652,7 @@ final Matcher isEditGetRefactoringParams = new LazyMatcher(() => new MatchesJson
* "status": List<RefactoringProblem>
* "feedback": optional object
* "change": optional SourceChange
- * "potentialChanges": optional List<String>
+ * "potentialEdits": optional List<String>
* }
*/
final Matcher isEditGetRefactoringResult = new LazyMatcher(() => new MatchesJsonObject(
@@ -661,7 +661,7 @@ final Matcher isEditGetRefactoringResult = new LazyMatcher(() => new MatchesJson
}, optionalFields: {
"feedback": isObject,
"change": isSourceChange,
- "potentialChanges": isListOf(isString)
+ "potentialEdits": isListOf(isString)
}));
/**
« no previous file with comments | « pkg/analysis_server/test/integration/integration_test_methods.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698