From d0661d0572912471c11700917019918ec1bc765f Mon Sep 17 00:00:00 2001 From: Shivashankar Paulchamy Date: Tue, 24 Mar 2026 13:01:36 -0700 Subject: [PATCH] Update Mount path --- .../containerz/tests/container_lifecycle/containerz_test.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/feature/container/containerz/tests/container_lifecycle/containerz_test.go b/feature/container/containerz/tests/container_lifecycle/containerz_test.go index 0f50049f8f7..a9864f4cb10 100644 --- a/feature/container/containerz/tests/container_lifecycle/containerz_test.go +++ b/feature/container/containerz/tests/container_lifecycle/containerz_test.go @@ -492,8 +492,9 @@ func TestVolumes(t *testing.T) { time.Sleep(5 * time.Second) mountOpts := map[string]string{ + "type": "none", "options": "bind", - "mountpoint": "/some-path", + "mountpoint": "/tmp", } createdVolumeName, err := cli.CreateVolume(ctx, volumeName, "local", nil, mountOpts) @@ -528,7 +529,7 @@ func TestVolumes(t *testing.T) { // check options wantOptions := map[string]string{ - "device": "/some-path", + "device": "/tmp", "o": "bind", "type": "none", }