mirror of
https://github.com/helm/helm.git
synced 2026-05-28 04:35:48 -04:00
fix(tests): Make tests pass on MacOS
This newly added tests was failing on MacOS because /proc does not exist. This commit replaces /proc with /tmp to achieve the same result. Signed-off-by: Marc Khouzam <marc.khouzam@montreal.ca>
This commit is contained in:
parent
ecc0070417
commit
1897d4d60a
1 changed files with 2 additions and 2 deletions
|
|
@ -227,8 +227,8 @@ func TestGetLocalPath(t *testing.T) {
|
|||
}{
|
||||
{
|
||||
name: "absolute path",
|
||||
repo: "file:////proc",
|
||||
expect: "/proc",
|
||||
repo: "file:////tmp",
|
||||
expect: "/tmp",
|
||||
},
|
||||
{
|
||||
name: "relative path",
|
||||
|
|
|
|||
Loading…
Reference in a new issue