Merge pull request #101115 from wangyx1992/capital-log

cleanup: fix log capitalization in volume package
This commit is contained in:
Kubernetes Prow Robot
2021-05-06 03:51:16 -07:00
committed by GitHub
49 changed files with 170 additions and 170 deletions

View File

@@ -45,7 +45,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