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

@@ -44,7 +44,7 @@ func prepareBlockMapperTest(plug *csiPlugin, specVolumeName string, t *testing.T
volume.VolumeOptions{},
)
if err != nil {
return nil, nil, nil, fmt.Errorf("Failed to make a new Mapper: %v", err)
return nil, nil, nil, fmt.Errorf("failed to make a new Mapper: %w", err)
}
csiMapper := mapper.(*csiBlockMapper)
return csiMapper, spec, pv, nil