From b87d98f88a51acefcda500026c6ebd45b299bab7 Mon Sep 17 00:00:00 2001 From: andyzhangx Date: Fri, 13 Sep 2024 07:45:46 +0000 Subject: [PATCH] test: fix ut failure --- pkg/smb/smb_test.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/pkg/smb/smb_test.go b/pkg/smb/smb_test.go index e1c82dba7d1..ee0a98d3bea 100644 --- a/pkg/smb/smb_test.go +++ b/pkg/smb/smb_test.go @@ -370,12 +370,6 @@ func TestAppendMountOptions(t *testing.T) { newOpts: map[string]string{"c": "d"}, expected: []string{"a", "b", "c=d"}, }, - { - desc: "normal newOpts", - options: []string{"a", "b"}, - newOpts: map[string]string{"c": "d", "e": "f"}, - expected: []string{"a", "b", "c=d", "e=f"}, - }, } for _, test := range tests {