| Index: pkg/analysis_server/test/domain_completion_test.dart
|
| diff --git a/pkg/analysis_server/test/domain_completion_test.dart b/pkg/analysis_server/test/domain_completion_test.dart
|
| index e406bfed601fb2128fc67b9dd34f805500fe429b..08fa7e6dfe90a88eca031a45888cbd709c45b504 100644
|
| --- a/pkg/analysis_server/test/domain_completion_test.dart
|
| +++ b/pkg/analysis_server/test/domain_completion_test.dart
|
| @@ -262,7 +262,7 @@ class CompletionTest extends AbstractAnalysisTest {
|
| }
|
|
|
| void assertHasResult(CompletionSuggestionKind kind, String completion,
|
| - [int relevance = COMPLETION_RELEVANCE_DEFAULT, bool isDeprecated = false,
|
| + [int relevance = DART_RELEVANCE_DEFAULT, bool isDeprecated = false,
|
| bool isPotential = false]) {
|
| var cs;
|
| suggestions.forEach((s) {
|
| @@ -445,11 +445,11 @@ class CompletionTest extends AbstractAnalysisTest {
|
| assertHasResult(
|
| CompletionSuggestionKind.KEYWORD,
|
| 'import',
|
| - COMPLETION_RELEVANCE_HIGH);
|
| + DART_RELEVANCE_HIGH);
|
| assertHasResult(
|
| CompletionSuggestionKind.KEYWORD,
|
| 'class',
|
| - COMPLETION_RELEVANCE_HIGH);
|
| + DART_RELEVANCE_HIGH);
|
| });
|
| }
|
|
|
|
|