From 7efad66ae83e5b6e2961cb174f0b0b76380baba3 Mon Sep 17 00:00:00 2001 From: Patrick Ohly Date: Fri, 9 Nov 2018 16:41:09 +0100 Subject: [PATCH] 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. --- test/e2e/storage/testsuites/provisioning.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/storage/testsuites/provisioning.go b/test/e2e/storage/testsuites/provisioning.go index f897f54beb4..f3df98ae8d7 100644 --- a/test/e2e/storage/testsuites/provisioning.go +++ b/test/e2e/storage/testsuites/provisioning.go @@ -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) })