Skip to content

Commit be537f1

Browse files
committed
Fix formatting
1 parent 8f55686 commit be537f1

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

Sources/SwiftSyntaxMacrosTestSupport/Assertions.swift

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,15 @@ public func assertMacroExpansion(
136136
failureHandler: {
137137
#if canImport(Testing)
138138
if Test.current != nil {
139-
Issue.record(Comment(rawValue: $0.message), sourceLocation: .init(fileID: fileID.description, filePath: file.description, line: Int(line), column: Int(column)))
139+
Issue.record(
140+
Comment(rawValue: $0.message),
141+
sourceLocation: .init(
142+
fileID: fileID.description,
143+
filePath: file.description,
144+
line: Int(line),
145+
column: Int(column)
146+
)
147+
)
140148
} else {
141149
XCTFail($0.message, file: $0.location.staticFilePath, line: $0.location.unsignedLine)
142150
}

0 commit comments

Comments
 (0)