| 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 92e85a9b0410df610228d03d52d599d99254b979..736a391780ab881449e067a1c9277ecfa9d71b4a 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
|
| @@ -27,7 +27,7 @@ int suggestionComparator(CompletionSuggestion s1, CompletionSuggestion s2) {
|
|
|
| abstract class DartCompletionContributorTest extends AbstractContextTest {
|
| static const String _UNCHECKED = '__UNCHECKED__';
|
| - String testFile = '/completionTest.dart';
|
| + String testFile;
|
| Source testSource;
|
| int completionOffset;
|
| int replacementOffset;
|
| @@ -584,6 +584,7 @@ abstract class DartCompletionContributorTest extends AbstractContextTest {
|
| @override
|
| void setUp() {
|
| super.setUp();
|
| + testFile = provider.convertPath('/completionTest.dart');
|
| contributor = createContributor();
|
| }
|
| }
|
|
|