Skip to content

Commit

Permalink
Fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
marmelroy committed Mar 24, 2016
1 parent d2ac7b6 commit 90b6bda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FileBrowserTests/FileBrowserTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class FileBrowserTests: XCTestCase {
let directoryPath = NSBundle(forClass: FileBrowserTests.self).bundleURL
let directoryContents = parser.filesForDirectory(directoryPath)
XCTAssertTrue(directoryContents.count > 0)
let stitchFile = directoryContents.filter({$0.displayName == "Stitch"}).first
let stitchFile = directoryContents.filter({$0.displayName == "Stitch.jpg"}).first
XCTAssertNotNil(stitchFile)
if let stitchFile = stitchFile {
XCTAssertEqual(stitchFile.type, FBFileType.JPG)
Expand Down

0 comments on commit 90b6bda

Please sign in to comment.