Skip to content

Commit

Permalink
docs: update method to nginxC.Terminate (#627)
Browse files Browse the repository at this point in the history
  • Loading branch information
ofey404 committed Nov 17, 2022
1 parent 4c4def7 commit eb22bbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -69,8 +69,8 @@ func TestIntegrationNginxLatestReturn(t *testing.T) {

// Clean up the container after the test is complete
defer func() {
if err := nginxC.terminate(ctx); err != nil {
t.Fatalf("failed to terminate container: %w", err)
if err := nginxC.Terminate(ctx); err != nil {
t.Fatalf("failed to terminate container: %v", err)
}
}()

Expand Down

0 comments on commit eb22bbd

Please sign in to comment.