Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mxbossard authored Dec 5, 2023
1 parent 9e2351b commit dc8f848
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integration/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -653,13 +653,13 @@ func TestWarmerTwice(t *testing.T) {
"-i", "debian:trixie-slim")
warmCmd := exec.Command("docker", dockerRunFlags...)

out, err := RunCommandWithoutTest(warmCmd, t)
out, err := RunCommandWithoutTest(warmCmd)
if err != nil {
log.Fatal("Unable to perform first warming: ", err)
}
log.Printf("First warm output: %s", out)

out, err = RunCommandWithoutTest(warmCmd, t)
out, err = RunCommandWithoutTest(warmCmd)
if err != nil {
log.Fatal("Unable to perform second warming: ", err)
}
Expand Down

0 comments on commit dc8f848

Please sign in to comment.