Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(416)

Unified Diff: pkg/analysis_server/test/services/correction/fix_test.dart

Issue 2864813002: Switch the default from non-driver to driver in several tests (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/analysis_server/test/services/correction/fix_test.dart
diff --git a/pkg/analysis_server/test/services/correction/fix_test.dart b/pkg/analysis_server/test/services/correction/fix_test.dart
index e7e837bace4ec834f102838e240c2c9ae1cb30e7..3f8c55439c6c5b450231b587eb7ea5f86cead0c2 100644
--- a/pkg/analysis_server/test/services/correction/fix_test.dart
+++ b/pkg/analysis_server/test/services/correction/fix_test.dart
@@ -53,6 +53,7 @@ class BaseFixProcessorTest extends AbstractSingleUnitTest {
String flutterPkgLibPath = '/packages/flutter/lib';
Fix fix;
+
SourceChange change;
String resultCode;
@@ -228,9 +229,6 @@ bool test() {
@reflectiveTest
class FixProcessorTest extends BaseFixProcessorTest {
- @override
- bool get enableNewAnalysisDriver => true;
-
test_addFieldFormalParameters_hasRequiredParameter() async {
await resolveTestUnit('''
class Test {
@@ -5890,9 +5888,6 @@ class Required {
class LintFixTest extends BaseFixProcessorTest {
AnalysisError error;
- @override
- bool get enableNewAnalysisDriver => true;
-
Future applyFix(FixKind kind) async {
fix = await _assertHasFix(kind, error);
change = fix.change;

Powered by Google App Engine
This is Rietveld 408576698