diff --git a/tests/aci-e2e/e2e-aci_test.go b/tests/aci-e2e/e2e-aci_test.go index 6fdf4f6f..a31335d4 100644 --- a/tests/aci-e2e/e2e-aci_test.go +++ b/tests/aci-e2e/e2e-aci_test.go @@ -467,7 +467,7 @@ func TestComposeUpUpdate(t *testing.T) { }) t.Run("compose ls", func(t *testing.T) { - res := c.RunDockerCmd("compose", "ls", "--project-name", composeProjectName) + res := c.RunDockerCmd("compose", "ls") lines := strings.Split(strings.TrimSpace(res.Stdout()), "\n") assert.Equal(t, 2, len(lines)) diff --git a/tests/ecs-e2e/e2e-ecs_test.go b/tests/ecs-e2e/e2e-ecs_test.go index b0438d72..41bf5ec8 100644 --- a/tests/ecs-e2e/e2e-ecs_test.go +++ b/tests/ecs-e2e/e2e-ecs_test.go @@ -99,7 +99,7 @@ func TestCompose(t *testing.T) { }) t.Run("compose ls", func(t *testing.T) { - res := c.RunDockerCmd("compose", "ls", "--project-name", stack) + res := c.RunDockerCmd("compose", "ls") lines := strings.Split(strings.TrimSpace(res.Stdout()), "\n") assert.Equal(t, 2, len(lines))