Skip to content

Commit

Permalink
Fixing Unit Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanetienne committed Feb 10, 2019
1 parent 50a7bff commit e3d8d14
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion Tests/AssetResizerTests/AssetResizerTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,8 @@ import XCTest

@testable import AssetResizer

final class AssetResizerTests: XCTestCase {}
final class AssetResizerTests: XCTestCase {

static let identifier = "net.jeanetienne.AssetResizerTests"

}
2 changes: 1 addition & 1 deletion Tests/AssetResizerTests/Tools/URL+TempFolder.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ extension URL {

static var cacheFolder: URL = { () -> URL in
let folderPath = FileManager.default.urls(for: .cachesDirectory, in: .userDomainMask)[0]
return folderPath.appendingPathComponent(Bundle.tests.bundleIdentifier!)
return folderPath.appendingPathComponent(AssetResizerTests.identifier)
}()

}

0 comments on commit e3d8d14

Please sign in to comment.