| 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 a48de3c23f582547dc3fde8636b11ae014e2f0a6..4ea40091df3762ae7ffcac9a608973b828f2ac53 100644
|
| --- a/pkg/analysis_server/test/services/completion/completion_test_util.dart
|
| +++ b/pkg/analysis_server/test/services/completion/completion_test_util.dart
|
| @@ -3860,9 +3860,10 @@ abstract class AbstractSelectorSuggestionTest extends AbstractCompletionTest {
|
| return computeFull((bool result) {
|
| expect(request.replacementOffset, completionOffset);
|
| expect(request.replacementLength, 0);
|
| - assertSuggestInvocationField('scA', 'String');
|
| - assertSuggestInvocationField('scB', 'int');
|
| - assertSuggestInvocationField('scI', null);
|
| + // Suggested by StaticMemberContributor
|
| + assertNotSuggested('scA');
|
| + assertNotSuggested('scB');
|
| + assertNotSuggested('scI');
|
| assertNotSuggested('b');
|
| assertNotSuggested('_c');
|
| assertNotSuggested('d');
|
|
|