| Index: pkg/analysis_server/test/integration/support/protocol_matchers.dart
|
| diff --git a/pkg/analysis_server/test/integration/support/protocol_matchers.dart b/pkg/analysis_server/test/integration/support/protocol_matchers.dart
|
| index 8a688c8b41b5e63ffc746db13a02e9d9d36c5a82..9d6b5860b22377b7d135eea0bdff9462611d7b47 100644
|
| --- a/pkg/analysis_server/test/integration/support/protocol_matchers.dart
|
| +++ b/pkg/analysis_server/test/integration/support/protocol_matchers.dart
|
| @@ -689,18 +689,13 @@ final Matcher isImplementedMember = new LazyMatcher(() => new MatchesJsonObject(
|
| *
|
| * {
|
| * "path": FilePath
|
| - * "uri": String
|
| * "prefix": String
|
| * "elements": List<String>
|
| * }
|
| */
|
| -final Matcher isImportedElements =
|
| - new LazyMatcher(() => new MatchesJsonObject("ImportedElements", {
|
| - "path": isFilePath,
|
| - "uri": isString,
|
| - "prefix": isString,
|
| - "elements": isListOf(isString)
|
| - }));
|
| +final Matcher isImportedElements = new LazyMatcher(() => new MatchesJsonObject(
|
| + "ImportedElements",
|
| + {"path": isFilePath, "prefix": isString, "elements": isListOf(isString)}));
|
|
|
| /**
|
| * LinkedEditGroup
|
|
|