Skip to content

Commit 63be961

Browse files
committed
Add missing 'var' to the expected git-mirrors directory
1 parent e7f56d9 commit 63be961

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

Tests/libhostmgrTests/Model/PathsTests.swift

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,16 @@ final class PathsTests: XCTestCase {
3333

3434
func testThatGitMirrorStoragePathIsCorrect() {
3535
let path = Paths.gitMirrorStorageDirectory
36-
validate(path: path, resolvesTo: "/usr/local/var/git-mirrors", forArchitecture: .x64)
37-
validate(path: path, resolvesTo: "/opt/homebrew/git-mirrors", forArchitecture: .arm64)
36+
validate(
37+
path: path,
38+
resolvesTo: "/usr/local/var/git-mirrors",
39+
forArchitecture: .x64
40+
)
41+
validate(
42+
path: path,
43+
resolvesTo: "/opt/homebrew/var/git-mirrors",
44+
forArchitecture: .arm64
45+
)
3846
}
3947

4048
@available(macOS 13.0, *)

0 commit comments

Comments
 (0)