| Index: pkg/analysis_server/test/services/completion/completion_test_util.dart
|
| diff --git a/pkg/analysis_server/test/services/completion/completion_test_util.dart b/pkg/analysis_server/test/services/completion/completion_test_util.dart
|
| index 83ca4e57107a4edbd0f9f4a17d1ee5f17560f0f8..249e1c03a36d3828edb6c6ace4ef987a1fcc76f4 100644
|
| --- a/pkg/analysis_server/test/services/completion/completion_test_util.dart
|
| +++ b/pkg/analysis_server/test/services/completion/completion_test_util.dart
|
| @@ -567,9 +567,7 @@ abstract class AbstractSelectorSuggestionTest extends AbstractCompletionTest {
|
| CompletionSuggestion suggestion =
|
| assertSuggest(completion, isDeprecated: isDeprecated);
|
| expect(suggestion.isDeprecated, isDeprecated);
|
| - // TODO(danrubel) : Perhaps should be protocol.ElementKind.ENUM_CONST
|
| - // but element model represents them as FIELD
|
| - expect(suggestion.element.kind, protocol.ElementKind.FIELD);
|
| + expect(suggestion.element.kind, protocol.ElementKind.ENUM_CONSTANT);
|
| return suggestion;
|
| }
|
|
|
|
|