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>
This commit is contained in:
Paul Holzinger
2025-11-12 15:44:26 +01:00
parent 81e9c67e11
commit 675182c2e9
3 changed files with 3 additions and 9 deletions

View File

@@ -4,9 +4,7 @@ import "os"
const podmanBinary = "../../../bin/darwin/podman"
var (
fakeImagePath string = os.DevNull
)
var fakeImagePath string = os.DevNull
func (i *initMachine) withFakeImage(_ *machineTestBuilder) *initMachine {
i.image = fakeImagePath

View File

@@ -4,9 +4,7 @@ import "os"
const podmanBinary = "../../../bin/podman-remote"
var (
fakeImagePath string = os.DevNull
)
var fakeImagePath string = os.DevNull
func (i *initMachine) withFakeImage(_ *machineTestBuilder) *initMachine {
i.image = fakeImagePath

View File

@@ -4,9 +4,7 @@ import "os"
const podmanBinary = "../../../bin/podman-remote"
var (
fakeImagePath string = os.DevNull
)
var fakeImagePath string = os.DevNull
func (i *initMachine) withFakeImage(_ *machineTestBuilder) *initMachine {
i.image = fakeImagePath