Skip to content
This repository has been archived by the owner on Nov 27, 2023. It is now read-only.

Commit

Permalink
Merge pull request #2179 from nicksieger/fix-windows-missing-existing…
Browse files Browse the repository at this point in the history
…-cli

Fix Windows e2e-local test
  • Loading branch information
nicksieger authored Jul 27, 2022
2 parents bf1fd67 + a451eba commit 4dc3e19
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion local/e2e/cli-only/e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ import (
"gotest.tools/v3/golden"
"gotest.tools/v3/icmd"

"github.com/docker/compose-cli/cli/mobycli"
. "github.com/docker/compose-cli/utils/e2e"
)

Expand Down Expand Up @@ -354,7 +355,7 @@ func TestMissingExistingCLI(t *testing.T) {
res := icmd.RunCmd(c)
res.Assert(t, icmd.Expected{
ExitCode: 1,
Err: `"com.docker.cli": executable file not found`,
Err: fmt.Sprintf(`"%s": executable file not found`, mobycli.ComDockerCli),
})
}

Expand Down

0 comments on commit 4dc3e19

Please sign in to comment.