Skip to content

Commit

Permalink
Ignore unused closure parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
mattrubin committed Dec 23, 2016
1 parent a0f0e49 commit baeb5cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SwiftGit2Tests/RepositorySpec.swift
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ class RepositorySpec: QuickSpec {
let oid = OID(string: "315b3f344221db91ddc54b269f3c9af422da0f2e")!
expect(repo.HEAD().value?.shortName).to(equal("master"))

expect(repo.checkout(oid, strategy: .None, progress: { (path, completedSteps, totalSteps) -> Void in
expect(repo.checkout(oid, strategy: .None, progress: { (_, completedSteps, totalSteps) -> Void in
expect(completedSteps).to(beLessThanOrEqualTo(totalSteps))
})).to(haveSucceeded())

Expand Down

0 comments on commit baeb5cb

Please sign in to comment.