Skip to content

Commit d9a715b

Browse files
stephencelisgithub-actions[bot]
authored andcommitted
Run swift-format
1 parent e243319 commit d9a715b

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

Sources/MacroTesting/AssertMacro.swift

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -128,18 +128,24 @@ public func assertMacro(
128128
line: UInt = #line,
129129
column: UInt = #column
130130
) {
131-
var indentationWidth = indentationWidth
131+
var indentationWidth =
132+
indentationWidth
132133
?? MacroTestingConfiguration.current.indentationWidth
133-
var macros = macros
134+
var macros =
135+
macros
134136
?? MacroTestingConfiguration.current.macros
135-
var record = record
137+
var record =
138+
record
136139
?? SnapshotTestingConfiguration.current?.record
137140
#if canImport(Testing)
138-
indentationWidth = indentationWidth
141+
indentationWidth =
142+
indentationWidth
139143
?? Test.current?.indentationWidth
140-
macros = macros
144+
macros =
145+
macros
141146
?? Test.current?.macros
142-
record = record
147+
record =
148+
record
143149
?? Test.current?.record
144150
#endif
145151
withMacroTesting(indentationWidth: indentationWidth, record: record, macros: macros) {

0 commit comments

Comments
 (0)