Index: pkg/analysis_server/test/services/correction/status_test.dart |
diff --git a/pkg/analysis_server/test/services/correction/status_test.dart b/pkg/analysis_server/test/services/correction/status_test.dart |
index 75559f946a607a46d1586a8aa8b36df5e755c2f4..77454d826616f3a533a7d17cffaf7d99ec4039d9 100644 |
--- a/pkg/analysis_server/test/services/correction/status_test.dart |
+++ b/pkg/analysis_server/test/services/correction/status_test.dart |
@@ -24,9 +24,6 @@ main() { |
@reflectiveTest |
class RefactoringLocationTest extends AbstractSingleUnitTest { |
- @override |
- bool get enableNewAnalysisDriver => false; |
- |
test_createLocation_forElement() async { |
await resolveTestUnit('class MyClass {}'); |
Element element = findElement('MyClass'); |
@@ -39,7 +36,9 @@ class RefactoringLocationTest extends AbstractSingleUnitTest { |
expect(location.startColumn, 7); |
} |
+ @failingTest |
test_createLocation_forMatch() async { |
+ // The class SearchMatchImpl has not been converted to use the new driver. |
await resolveTestUnit('class MyClass {}'); |
Element element = findElement('MyClass'); |
SourceRange sourceRange = range.elementName(element); |