@@ -49,8 +49,7 @@ class LintOrFormatRuleTestCase: DiagnosingTestCase {
49
49
var emittedFindings = [ Finding] ( )
50
50
51
51
// Force the rule to be enabled while we test it.
52
- var configuration = Configuration . forTesting
53
- configuration. rules [ type. ruleName] = true
52
+ let configuration = Configuration . forTesting ( enabledRule: type. ruleName)
54
53
let context = makeContext (
55
54
sourceFileSyntax: sourceFileSyntax,
56
55
configuration: configuration,
@@ -59,8 +58,6 @@ class LintOrFormatRuleTestCase: DiagnosingTestCase {
59
58
)
60
59
61
60
var emittedPipelineFindings = [ Finding] ( )
62
- // Disable default rules, so only select rule runs in pipeline
63
- configuration. rules = [ type. ruleName: true ]
64
61
let pipeline = SwiftLinter (
65
62
configuration: configuration,
66
63
findingConsumer: { emittedPipelineFindings. append ( $0) }
@@ -118,8 +115,8 @@ class LintOrFormatRuleTestCase: DiagnosingTestCase {
118
115
var emittedFindings = [ Finding] ( )
119
116
120
117
// Force the rule to be enabled while we test it.
121
- var configuration = configuration ?? Configuration . forTesting
122
- configuration . rules [ formatType . ruleName ] = true
118
+ let configuration = configuration ?? Configuration . forTesting ( enabledRule : formatType . ruleName )
119
+
123
120
let context = makeContext (
124
121
sourceFileSyntax: sourceFileSyntax,
125
122
configuration: configuration,
@@ -162,8 +159,6 @@ class LintOrFormatRuleTestCase: DiagnosingTestCase {
162
159
)
163
160
164
161
var emittedPipelineFindings = [ Finding] ( )
165
- // Disable default rules, so only select rule runs in pipeline
166
- configuration. rules = [ formatType. ruleName: true ]
167
162
let pipeline = SwiftFormatter (
168
163
configuration: configuration,
169
164
findingConsumer: { emittedPipelineFindings. append ( $0) }
0 commit comments