Skip to content

Commit 660eb5b

Browse files
authored
Merge pull request #566 from huww98/uniq-name
use unique name for volume
2 parents 55711a4 + 349e5bf commit 660eb5b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pkg/sanity/controller.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1559,7 +1559,7 @@ var _ = DescribeSanity("ModifyVolume [Controller Server]", func(sc *TestContext)
15591559

15601560
By("creating a new volume")
15611561

1562-
volReq := MakeCreateVolumeReq(sc, UniqueString("sanity-modify-volume"))
1562+
volReq := MakeCreateVolumeReq(sc, UniqueString("sanity-modify-volume-unsupported"))
15631563
vol := r.MustCreateVolume(context.Background(), volReq)
15641564

15651565
By("failing to modify the volume")
@@ -1595,7 +1595,7 @@ var _ = DescribeSanity("ModifyVolume [Controller Server]", func(sc *TestContext)
15951595

15961596
By("creating a new volume with volume attribute class")
15971597

1598-
volReq := MakeCreateVolumeReq(sc, UniqueString("sanity-modify-volume"))
1598+
volReq := MakeCreateVolumeReq(sc, UniqueString("sanity-modify-volume-with-vac"))
15991599
volReq.MutableParameters = sc.Config.TestVolumeMutableParameters
16001600
vol := r.MustCreateVolume(context.Background(), volReq)
16011601

@@ -1612,7 +1612,7 @@ var _ = DescribeSanity("ModifyVolume [Controller Server]", func(sc *TestContext)
16121612

16131613
By("creating a new volume with volume attribute class")
16141614

1615-
volReq := MakeCreateVolumeReq(sc, UniqueString("sanity-modify-volume"))
1615+
volReq := MakeCreateVolumeReq(sc, UniqueString("sanity-modify-volume-with-vac-not-supported"))
16161616
volReq.MutableParameters = sc.Config.TestVolumeMutableParameters
16171617
vol := r.MustCreateVolume(context.Background(), volReq)
16181618

0 commit comments

Comments
 (0)