From f24c5b51dfd75a1a429527dc9b001e17fecb86ba Mon Sep 17 00:00:00 2001 From: Shivanjan Chakravorty Date: Thu, 24 Aug 2023 17:47:36 -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..11a4bcaac 100644 --- a/csi/controller_test.go +++ b/csi/controller_test.go @@ -3283,7 +3283,8 @@ func TestResolveSpecFromCSI(t *testing.T) { }, expectedSpec: &api.VolumeSpec{ - Shared: false, + Shared: false, + Sharedv4: false, ProxySpec: &api.ProxySpec{ ProxyProtocol: api.ProxyProtocol_PROXY_PROTOCOL_PURE_FILE, },