Files
podman/pkg/machine/e2e/config_darwin_test.go
Paul Holzinger 675182c2e9 fix gofumpt issues on main
Two PRs[1,2] were merged without rebasing resulting in a conflict since
the one enabled gofumpt while the other PR contained formatting not
according to that so now the lint fails.

[1] https://github.com/containers/podman/pull/27498
[2] https://github.com/containers/podman/pull/27493

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
2025-11-12 15:44:26 +01:00

13 lines
232 B
Go

package e2e_test
import "os"
const podmanBinary = "../../../bin/darwin/podman"
var fakeImagePath string = os.DevNull
func (i *initMachine) withFakeImage(_ *machineTestBuilder) *initMachine {
i.image = fakeImagePath
return i
}