| Index: pkg/analysis_server/test/integration/protocol_matchers.dart
|
| ===================================================================
|
| --- pkg/analysis_server/test/integration/protocol_matchers.dart (revision 43141)
|
| +++ pkg/analysis_server/test/integration/protocol_matchers.dart (working copy)
|
| @@ -155,11 +155,13 @@
|
| *
|
| * {
|
| * "libraries": List<FilePath>
|
| + * "packageMap": Map<String, FilePath>
|
| * }
|
| */
|
| final Matcher isAnalysisGetLibraryDependenciesResult = new LazyMatcher(() => new MatchesJsonObject(
|
| "analysis.getLibraryDependencies result", {
|
| - "libraries": isListOf(isFilePath)
|
| + "libraries": isListOf(isFilePath),
|
| + "packageMap": isMapOf(isString, isFilePath)
|
| }));
|
|
|
| /**
|
|
|