Skip to content

Commit

Permalink
Fix path to docker socket and ssh key for podman preset test
Browse files Browse the repository at this point in the history
  • Loading branch information
anjannath committed Jul 17, 2023
1 parent ab31720 commit 434a1d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/podman_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ var _ = Describe("podman preset", Label("podman-preset"), func() {
It("podman-env", func() {
// Do what 'eval $(crc podman-env) would do
path := os.ExpandEnv("${HOME}/.crc/bin/oc:$PATH")
csshk := os.ExpandEnv("${HOME}/.crc/machines/crc/id_ecdsa")
dh := os.ExpandEnv("unix:///${HOME}/.crc/machines/crc/docker.sock")
csshk := os.ExpandEnv("${HOME}/.crc/machines/crc-podman/id_ecdsa")
dh := os.ExpandEnv("unix:///${HOME}/.crc/machines/crc-podman/docker.sock")
ch := "ssh://[email protected]:2222/run/user/1000/podman/podman.sock"
if runtime.GOOS == "windows" {
userHomeDir, _ := os.UserHomeDir()
Expand Down

0 comments on commit 434a1d2

Please sign in to comment.