| 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 16671405b49dc1befaa7dc32fc0815dc581ff967..4f059411d20297a41658f145989730dadbe36d40 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
|
| @@ -16,6 +16,7 @@ import 'completion_contributor_util.dart';
|
| main() {
|
| defineReflectiveSuite(() {
|
| defineReflectiveTests(KeywordContributorTest);
|
| + defineReflectiveTests(KeywordContributorTest_Driver);
|
| });
|
| }
|
|
|
| @@ -1587,3 +1588,9 @@ class A {
|
| return true;
|
| }
|
| }
|
| +
|
| +@reflectiveTest
|
| +class KeywordContributorTest_Driver extends KeywordContributorTest {
|
| + @override
|
| + bool get enableNewAnalysisDriver => true;
|
| +}
|
|
|