| Index: pkg/analysis_server/test/services/completion/dart/completion_contributor_util.dart
|
| diff --git a/pkg/analysis_server/test/services/completion/dart/completion_contributor_util.dart b/pkg/analysis_server/test/services/completion/dart/completion_contributor_util.dart
|
| index 24b9aaa30be75b8914c5d1db3c2edae9f1628263..08c83de9cac871e78c201cca7414f20d0b441f25 100644
|
| --- a/pkg/analysis_server/test/services/completion/dart/completion_contributor_util.dart
|
| +++ b/pkg/analysis_server/test/services/completion/dart/completion_contributor_util.dart
|
| @@ -143,10 +143,10 @@ abstract class DartCompletionContributorTest extends AbstractContextTest {
|
| if (elemOffset != null) {
|
| expect(cs.element.location.offset, elemOffset);
|
| }
|
| - if(paramName != null) {
|
| + if (paramName != null) {
|
| expect(cs.parameterName, paramName);
|
| }
|
| - if(paramType != null) {
|
| + if (paramType != null) {
|
| expect(cs.parameterType, paramType);
|
| }
|
| return cs;
|
| @@ -365,8 +365,7 @@ abstract class DartCompletionContributorTest extends AbstractContextTest {
|
| return cs;
|
| }
|
|
|
| - CompletionSuggestion assertSuggestName(
|
| - String name,
|
| + CompletionSuggestion assertSuggestName(String name,
|
| {int relevance: DART_RELEVANCE_DEFAULT,
|
| String importUri,
|
| CompletionSuggestionKind kind: CompletionSuggestionKind.IDENTIFIER,
|
|
|