Skip to content

Commit d123e1c

Browse files
Fix lint error (#7)
1 parent 6245bb8 commit d123e1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/STARLibTests/FastStrategyTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ final class SwiftTypeAdoptionReporterTests: XCTestCase {
397397

398398
setUp?(strategy)
399399

400-
let actual = (try strategy.findUsageCounts()).mapValues({ $0.usageCount })
400+
let actual = try (strategy.findUsageCounts()).mapValues({ $0.usageCount })
401401
XCTAssertEqual(expected, actual, file: file, line: line)
402402
} catch {
403403
XCTFail("Failed with error \(String(describing: error))", file: file, line: line)

0 commit comments

Comments
 (0)