Skip to content

Commit

Permalink
fix: wait more time in test
Browse files Browse the repository at this point in the history
  • Loading branch information
mdelapenya committed Feb 15, 2024
1 parent 4bf9515 commit 43c4eca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker_files_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ func TestCopyFileToRunningContainer(t *testing.T) {
require.NoError(t, err)

// Give some time to the wait script to catch the hello script being created
err = wait.ForLog("done").WithStartupTimeout(200*time.Millisecond).WaitUntilReady(ctx, container)
err = wait.ForLog("done").WithStartupTimeout(2*time.Second).WaitUntilReady(ctx, container)
require.NoError(t, err)

require.NoError(t, container.Terminate(ctx))
Expand Down

0 comments on commit 43c4eca

Please sign in to comment.