| Index: pkg/analysis_services/test/completion/local_computer_test.dart
|
| diff --git a/pkg/analysis_services/test/completion/local_computer_test.dart b/pkg/analysis_services/test/completion/local_computer_test.dart
|
| index dc666bd6b39e33c1550bd10b11a827f80a26d977..47a8ca9c8984443fb89f4aae94b6c7c2002b85c1 100644
|
| --- a/pkg/analysis_services/test/completion/local_computer_test.dart
|
| +++ b/pkg/analysis_services/test/completion/local_computer_test.dart
|
| @@ -72,10 +72,11 @@ class LocalComputerTest extends AbstractCompletionTest {
|
| }
|
|
|
| test_function() {
|
| - addTestSource('main(args) {^}');
|
| + addTestSource('main(args) {x.then((b) {^});}');
|
| expect(computeFast(), isTrue);
|
| assertSuggestFunction('main');
|
| assertSuggestParameter('args');
|
| + assertSuggestParameter('b');
|
| }
|
|
|
| test_members() {
|
|
|