Skip to content

Commit dd3a135

Browse files
committed
minor changes
1 parent 71442ae commit dd3a135

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Tests/SwiftParserTest/translated/RecoveryTests.swift

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1887,8 +1887,10 @@ final class RecoveryTests: XCTestCase {
18871887
let myString = 1️⃣@"foo"
18881888
"""#,
18891889
diagnostics: [
1890-
DiagnosticSpec(message: "string literals in Swift are not preceded by an '@' sign",
1891-
fixIts: ["remove '@'"]),
1890+
DiagnosticSpec(
1891+
message: "string literals in Swift are not preceded by an '@' sign",
1892+
fixIts: ["remove '@'"]
1893+
)
18921894
],
18931895
fixedSource: """
18941896
let myString = "foo"

0 commit comments

Comments
 (0)