Skip to content

Commit 943ca65

Browse files
authored
batches: fix workspace detection test on M1 Macs (#706)
1 parent 52a5479 commit 943ca65

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internal/batches/workspace/workspace_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313

1414
func TestBestWorkspaceCreator(t *testing.T) {
1515
ctx := context.Background()
16-
isOverridden := !(runtime.GOOS == "darwin" && runtime.GOARCH == "amd64")
16+
isOverridden := !(runtime.GOOS == "darwin" && (runtime.GOARCH == "amd64" || runtime.GOARCH == "arm64"))
1717

1818
uidGid := func(uid, gid int) docker.UIDGID {
1919
return docker.UIDGID{UID: uid, GID: gid}

0 commit comments

Comments
 (0)