Skip to content

Commit 8a115a3

Browse files
authored
Merge pull request #27 from kkmsft/test_lint_fix
Filesystem test code - lint fix
2 parents 9dee974 + 4ebe344 commit 8a115a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integrationtests/filesystem_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ func TestFilesystemAPIGroup(t *testing.T) {
140140
lnTargetStagePath := fmt.Sprintf("C:\\var\\lib\\kubelet\\plugins\\testplugin-%d.csi.io\\volume%d-tgt-ln", rand1, rand2)
141141

142142
// 3. Create soft link to the directory and make sure target exists. Success scenario.
143-
os.Mkdir(targetStagePath, os.ModeDir)
143+
err = os.Mkdir(targetStagePath, os.ModeDir)
144144
require.Nil(t, err)
145145
defer os.Remove(targetStagePath)
146146
// Create a sym link

0 commit comments

Comments
 (0)