test/e2e: actually start container in startContainer

https://github.com/containers/podman/pull/26891#pullrequestreview-3152061969

Signed-off-by: Winter M <winter@antithesis.com>
This commit is contained in:
Winter M
2025-08-27 11:16:26 -04:00
committed by Matt Heon
parent bc905f25c3
commit 8f3fcf7c29

View File

@ -788,7 +788,7 @@ var _ = Describe("Verify podman containers.conf usage", func() {
})
startContainer := func(params ...string) string {
args := []string{"create"}
args := []string{"run", "-d"}
for _, param := range params {
if param == "--name" {
args = append(args, "--replace")