Skip to content

Commit

Permalink
fixed a warning caused by past refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
Honza Dvorsky committed Apr 25, 2015
1 parent 2625bc8 commit 5fc388e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BuildaGitServerTests/GitHubServerTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class GitHubSourceTests: XCTestCase {

XCTAssertNotNil(body, "Body must be non-nil")
if let body = body as? NSArray {
let prs: [PullRequest] = GitHubArray(body as! NSArray)
let prs: [PullRequest] = GitHubArray(body)
XCTAssertGreaterThan(prs.count, 0, "We need > 0 items to test parsing")
Log.verbose("Parsed PRs: \(prs)")
} else {
Expand Down

0 comments on commit 5fc388e

Please sign in to comment.