From 8e29bb04548f5f0cbb1c692e1b450a1944c0d321 Mon Sep 17 00:00:00 2001 From: Alexander Wels Date: Mon, 10 Jan 2022 07:00:21 -0600 Subject: [PATCH] Update test/e2e/storage/testsuites/provisioning.go Add missing brackets Co-authored-by: Patrick Ohly --- 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 8d1fb717ef9..7ddd9f3e387 100644 --- a/test/e2e/storage/testsuites/provisioning.go +++ b/test/e2e/storage/testsuites/provisioning.go @@ -478,7 +478,7 @@ func (t StorageClassTest) checkProvisioning(client clientset.Interface, claim *v requestedCapacity := resource.MustParse(t.ClaimSize) claimCapacity := claim.Spec.Resources.Requests[v1.ResourceName(v1.ResourceStorage)] - gomega.Expect(claimCapacity.Value()).To(gomega.BeNumerically(">=", requestedCapacity.Value), "claimCapacity is not greater or equal to requestedCapacity") + gomega.Expect(claimCapacity.Value()).To(gomega.BeNumerically(">=", requestedCapacity.Value()), "claimCapacity is not greater or equal to requestedCapacity") // Check PV properties ginkgo.By("checking the PV")