From f776a2fe16d67bb43b180bf05303ce329f7b1d4c Mon Sep 17 00:00:00 2001 From: Rob Watson Date: Sun, 13 Apr 2025 09:53:09 +0200 Subject: [PATCH] fixup! refactor(container): restart handling --- internal/container/container_test.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/internal/container/container_test.go b/internal/container/container_test.go index 654fea7..108dc9a 100644 --- a/internal/container/container_test.go +++ b/internal/container/container_test.go @@ -3,7 +3,6 @@ package container_test import ( "bytes" "errors" - "fmt" "io" "testing" "time" @@ -190,7 +189,6 @@ func TestClientRunContainerWithRestart(t *testing.T) { ContainerConfig: &dockercontainer.Config{Image: "alpine"}, HostConfig: &dockercontainer.HostConfig{}, ShouldRestart: func(_ int64, restartCount int, _ time.Duration) (bool, error) { - fmt.Println("ShouldRestart", restartCount) if restartCount == 0 { return true, nil }