Skip to content

Commit 6cc66f1

Browse files
committed
feedback
1 parent e04eec7 commit 6cc66f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkgs/test_analyzer_plugin/lib/src/fixes.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import 'package:analyzer_plugin/utilities/range_factory.dart';
1212
import 'utilities.dart';
1313

1414
class MoveBelowEnclosingTestCall extends ResolvedCorrectionProducer {
15-
static const _wrapInQuotesKind = FixKind(
15+
static const _moveBelowEnclosingTestCallKind = FixKind(
1616
'dart.fix.moveBelowEnclosingTestCall',
1717
DartFixKindPriority.standard,
1818
"Move below the enclosing 'test' call");
@@ -26,7 +26,7 @@ class MoveBelowEnclosingTestCall extends ResolvedCorrectionProducer {
2626
CorrectionApplicability.singleLocation;
2727

2828
@override
29-
FixKind get fixKind => _wrapInQuotesKind;
29+
FixKind get fixKind => _moveBelowEnclosingTestCallKind;
3030

3131
@override
3232
Future<void> compute(ChangeBuilder builder) async {

0 commit comments

Comments
 (0)