Merge pull request #54545 from jianglingxia/jlx-102516

Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>.

Delete the parentheses in volumes.go

**What this PR does / why we need it**:
there has only one para so  no need the ()
**Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes #

**Special notes for your reviewer**:

**Release note**:

```release-note
NONE
```
This commit is contained in:
Kubernetes Submit Queue 2017-10-25 10:42:56 -07:00 committed by GitHub
commit e7f5d0547c
2 changed files with 2 additions and 6 deletions

View File

@ -300,9 +300,7 @@ var _ = SIGDescribe("PersistentVolumes-local [Feature:LocalPersistentVolumes] [S
})
Context("when using local volume provisioner", func() {
var (
volumePath string
)
var volumePath string
BeforeEach(func() {
setupLocalVolumeProvisioner(config)

View File

@ -535,9 +535,7 @@ var _ = SIGDescribe("Volumes", func() {
Describe("vsphere [Feature:Volumes]", func() {
It("should be mountable", func() {
framework.SkipUnlessProviderIs("vsphere")
var (
volumePath string
)
var volumePath string
config := framework.VolumeTestConfig{
Namespace: namespace.Name,
Prefix: "vsphere",