e2e/storage: distinct test names for provisioning

A test name should not be the subset of another, because then it is
impossible to focus on it.

In this case, -ginkgo.focus=should.provision.storage ran both "should
provision storage" and "should provision storage with mount options"
without the ability to select just the former.
This commit is contained in:
Patrick Ohly 2018-11-09 16:41:09 +01:00
parent bcef72bf06
commit 7efad66ae8

View File

@ -173,7 +173,7 @@ type provisioningTestInput struct {
}
func testProvisioning(input *provisioningTestInput) {
It("should provision storage", func() {
It("should provision storage with defaults", func() {
TestDynamicProvisioning(input.testCase, input.cs, input.pvc, input.sc)
})