From 2a2a6f1eb7595eeea7b08f15bd83bb07eedf5d5b Mon Sep 17 00:00:00 2001 From: Shivanjan Chakravorty Date: Thu, 24 Aug 2023 17:51:39 -0600 Subject: [PATCH] test: check for Shared and SharedV4 value in unit test Signed-off-by: Shivanjan Chakravorty --- csi/controller_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/csi/controller_test.go b/csi/controller_test.go index a6f4386cd..51fa05598 100644 --- a/csi/controller_test.go +++ b/csi/controller_test.go @@ -3307,7 +3307,8 @@ func TestResolveSpecFromCSI(t *testing.T) { }, expectedSpec: &api.VolumeSpec{ - Shared: false, + Shared: false, + Sharedv4: false, ProxySpec: &api.ProxySpec{ ProxyProtocol: api.ProxyProtocol_PROXY_PROTOCOL_NFS, },