Skip to content

Commit d2f4cc0

Browse files
authored
Merge pull request kubernetes#92841 from chethanv28/fix-typo-e2e-tests
Fix typo in vsphere e2e test names
2 parents 016c2f6 + 3e19a33 commit d2f4cc0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/e2e/storage/vsphere/persistent_volumes-vsphere.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ var _ = utils.SIGDescribe("PersistentVolumes:vsphere [Feature:vsphere]", func()
161161
1. Delete PV.
162162
2. Delete POD, POD deletion should succeed.
163163
*/
164-
ginkgo.It("should test that deleting the PV before the pod does not cause pod deletion to fail on vspehre volume detach", func() {
164+
ginkgo.It("should test that deleting the PV before the pod does not cause pod deletion to fail on vsphere volume detach", func() {
165165
ginkgo.By("Deleting the Persistent Volume")
166166
framework.ExpectNoError(e2epv.DeletePersistentVolume(c, pv.Name), "Failed to delete PV ", pv.Name)
167167
pv = nil
@@ -176,7 +176,7 @@ var _ = utils.SIGDescribe("PersistentVolumes:vsphere [Feature:vsphere]", func()
176176
2. Restart kubelet
177177
3. Verify that written file is accessible after kubelet restart
178178
*/
179-
ginkgo.It("should test that a file written to the vspehre volume mount before kubelet restart can be read after restart [Disruptive]", func() {
179+
ginkgo.It("should test that a file written to the vsphere volume mount before kubelet restart can be read after restart [Disruptive]", func() {
180180
e2eskipper.SkipUnlessSSHKeyPresent()
181181
utils.TestKubeletRestartsAndRestoresMount(c, f, clientPod)
182182
})
@@ -192,7 +192,7 @@ var _ = utils.SIGDescribe("PersistentVolumes:vsphere [Feature:vsphere]", func()
192192
4. Start kubelet.
193193
5. Verify that volume mount not to be found.
194194
*/
195-
ginkgo.It("should test that a vspehre volume mounted to a pod that is deleted while the kubelet is down unmounts when the kubelet returns [Disruptive]", func() {
195+
ginkgo.It("should test that a vsphere volume mounted to a pod that is deleted while the kubelet is down unmounts when the kubelet returns [Disruptive]", func() {
196196
e2eskipper.SkipUnlessSSHKeyPresent()
197197
utils.TestVolumeUnmountsFromDeletedPod(c, f, clientPod)
198198
})

0 commit comments

Comments
 (0)