diff --git a/tests/e2e/e2e_test.go b/tests/e2e/e2e_test.go index d0615490..eb49bc69 100644 --- a/tests/e2e/e2e_test.go +++ b/tests/e2e/e2e_test.go @@ -47,23 +47,6 @@ func TestMain(m *testing.M) { os.Exit(exitCode) } -func TestComposeNotImplemented(t *testing.T) { - c := NewParallelE2eCLI(t, binDir) - res := c.RunDockerCmd("context", "show") - res.Assert(t, icmd.Expected{Out: "default"}) - res = c.RunDockerOrExitError("compose", "up") - res.Assert(t, icmd.Expected{ - ExitCode: 1, - Err: `Command "compose up" not available in current context (default)`, - }) - - res = c.RunDockerOrExitError("compose", "-f", "titi.yaml", "up") - res.Assert(t, icmd.Expected{ - ExitCode: 1, - Err: `Command "compose up" not available in current context (default)`, - }) -} - func TestContextDefault(t *testing.T) { c := NewParallelE2eCLI(t, binDir)