| 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 291e8b093f85fd98f6bfc3ffd2beae4ffd7afaa9..6663f98f474931c7a65985d1d3f0e464c3365602 100644
|
| --- a/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| +++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| @@ -1007,19 +1007,19 @@ final Matcher isExecutionLaunchDataParams = new LazyMatcher(() => new MatchesJso
|
| }));
|
|
|
| /**
|
| - * experimental.getDiagnostics params
|
| + * diagnostic.getDiagnostics params
|
| */
|
| -final Matcher isExperimentalGetDiagnosticsParams = isNull;
|
| +final Matcher isDiagnosticGetDiagnosticsParams = isNull;
|
|
|
| /**
|
| - * experimental.getDiagnostics result
|
| + * diagnostic.getDiagnostics result
|
| *
|
| * {
|
| * "contexts": List<ContextData>
|
| * }
|
| */
|
| -final Matcher isExperimentalGetDiagnosticsResult = new LazyMatcher(() => new MatchesJsonObject(
|
| - "experimental.getDiagnostics result", {
|
| +final Matcher isDiagnosticGetDiagnosticsResult = new LazyMatcher(() => new MatchesJsonObject(
|
| + "diagnostic.getDiagnostics result", {
|
| "contexts": isListOf(isContextData)
|
| }));
|
|
|
|
|