cleanup: fix log capitalization in volume package

Signed-off-by: wangyx1992 <wang.yixiang@zte.com.cn>
This commit is contained in:
wangyx1992
2021-04-14 21:58:56 +08:00
parent 25ee51c791
commit 7fe934a72d
49 changed files with 170 additions and 170 deletions

View File

@@ -418,13 +418,13 @@ func testFSGroupMount(plug volume.VolumePlugin, pod *v1.Pod, tmpDir string, fsGr
return err
}
if mounter == nil {
return fmt.Errorf("Got a nil Mounter")
return fmt.Errorf("got a nil Mounter")
}
volPath := filepath.Join(tmpDir, testMountPath)
path := mounter.GetPath()
if path != volPath {
return fmt.Errorf("Got unexpected path: %s", path)
return fmt.Errorf("got unexpected path: %s", path)
}
var mounterArgs volume.MounterArgs