Skip to content

Commit

Permalink
Fix SwiftLint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeehut committed Jun 9, 2020
1 parent 3f2e658 commit 2e9a2ac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Tests/AnyLintTests/AutoCorrectionTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ final class AutoCorrectionTests: XCTestCase {
[
"Autocorrection applied, the diff is: (+ added, - removed)",
"- Lisence",
"+ License"
"+ License",
]
)

let multiLineAutoCorrection: AutoCorrection = [
"before": "A\nB\nC\nD\nE\nF\nG\nH\nI\nJ\nK\nL\nM\nN\nO\nP\nQ\nR\nS\nT\nU\nV\nW\nX\nY\nZ\n",
"after": "A\nB\nD\nE\nF1\nF2\nG\nH\nI\nJ\nK\nL\nM\nN\nO\nP\nQ\nR\nS\nT\nU\nV\nW\nX\nY\nZ\n"
"after": "A\nB\nD\nE\nF1\nF2\nG\nH\nI\nJ\nK\nL\nM\nN\nO\nP\nQ\nR\nS\nT\nU\nV\nW\nX\nY\nZ\n",
]
XCTAssertEqual(
multiLineAutoCorrection.appliedMessageLines,
Expand All @@ -30,7 +30,7 @@ final class AutoCorrectionTests: XCTestCase {
"- [L3] C",
"+ [L5] F1",
"- [L6] F",
"+ [L6] F2"
"+ [L6] F2",
]
)
}
Expand Down

0 comments on commit 2e9a2ac

Please sign in to comment.