Skip to content

Commit

Permalink
Add missing args
Browse files Browse the repository at this point in the history
Signed-off-by: Jacob Tomlinson <[email protected]>
  • Loading branch information
jacobtomlinson committed Jul 23, 2024
1 parent 7512dcd commit 224e68e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/container/docker_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func TestDockerContainer(t *testing.T) {
volumes := []canaryv1.Volume{
{MountPath: "/foo"},
}
c := New("nginx", env, ports, volumes, nil)
c := New("nginx", env, ports, volumes, nil, nil)

err := c.Start()

Expand Down Expand Up @@ -69,7 +69,7 @@ func TestDockerContainer(t *testing.T) {
}
}
func TestDockerContainerRemoves(t *testing.T) {
c := New("nginx", nil, nil, nil, nil)
c := New("nginx", nil, nil, nil, nil, nil)

err := c.Start()
if err != nil {
Expand Down

0 comments on commit 224e68e

Please sign in to comment.