| Index: pkg/analysis_server/test/services/completion/local_computer_test.dart
|
| diff --git a/pkg/analysis_server/test/services/completion/local_computer_test.dart b/pkg/analysis_server/test/services/completion/local_computer_test.dart
|
| index 2ba76b3edf4e149512ab75324ae7d46add7fad11..4842d9812b3b4e7c74a969f0cda9ea4135e14c02 100644
|
| --- a/pkg/analysis_server/test/services/completion/local_computer_test.dart
|
| +++ b/pkg/analysis_server/test/services/completion/local_computer_test.dart
|
| @@ -34,20 +34,6 @@ class LocalComputerTest extends AbstractSelectorSuggestionTest {
|
| assertSuggestParameter('b', 'R');
|
| }
|
|
|
| - test_InterpolationExpression() {
|
| - // SimpleIdentifier InterpolationExpression StringInterpolation
|
| - addTestSource('main() {String name; print("hello \$^");}');
|
| - expect(computeFast(), isTrue);
|
| - assertSuggestLocalVariable('name', 'String');
|
| - }
|
| -
|
| - test_InterpolationExpression_block() {
|
| - // SimpleIdentifier InterpolationExpression StringInterpolation
|
| - addTestSource('main() {String name; print("hello \${n^}");}');
|
| - expect(computeFast(), isTrue);
|
| - assertSuggestLocalVariable('name', 'String');
|
| - }
|
| -
|
| test_MethodDeclaration_body_getters() {
|
| // Block BlockFunctionBody MethodDeclaration
|
| addTestSource('class A {@deprecated X get f => 0; Z a() {^} get _g => 1;}');
|
|
|