| Index: pkg/analysis_server/test/services/completion/dart/keyword_contributor_test.dart
|
| diff --git a/pkg/analysis_server/test/services/completion/dart/keyword_contributor_test.dart b/pkg/analysis_server/test/services/completion/dart/keyword_contributor_test.dart
|
| index 1d3549d21ae4a642082b4d97846b695e30f4d420..167e3abf236632b5b03f85caa47c86778938b844 100644
|
| --- a/pkg/analysis_server/test/services/completion/dart/keyword_contributor_test.dart
|
| +++ b/pkg/analysis_server/test/services/completion/dart/keyword_contributor_test.dart
|
| @@ -1114,27 +1114,6 @@ class A {
|
| relevance: DART_RELEVANCE_HIGH);
|
| }
|
|
|
| - test_inComment_block() async {
|
| - addTestSource('''
|
| -main() {
|
| - /* text ^ */
|
| - print(42);
|
| -}
|
| -''');
|
| - await computeSuggestions();
|
| - expect(suggestions, isEmpty);
|
| - }
|
| -
|
| - test_inComment_endOfLine() async {
|
| - addTestSource('''
|
| -main() {
|
| - // text ^
|
| -}
|
| -''');
|
| - await computeSuggestions();
|
| - expect(suggestions, isEmpty);
|
| - }
|
| -
|
| test_is_expression() async {
|
| addTestSource('main() {if (x is^)}');
|
| await computeSuggestions();
|
|
|