mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-31 07:20:13 +00:00
Update test/e2e/storage/testsuites/provisioning.go
Add missing brackets Co-authored-by: Patrick Ohly <patrick.ohly@intel.com>
This commit is contained in:
parent
59dcddae47
commit
8e29bb0454
@ -478,7 +478,7 @@ func (t StorageClassTest) checkProvisioning(client clientset.Interface, claim *v
|
|||||||
|
|
||||||
requestedCapacity := resource.MustParse(t.ClaimSize)
|
requestedCapacity := resource.MustParse(t.ClaimSize)
|
||||||
claimCapacity := claim.Spec.Resources.Requests[v1.ResourceName(v1.ResourceStorage)]
|
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
|
// Check PV properties
|
||||||
ginkgo.By("checking the PV")
|
ginkgo.By("checking the PV")
|
||||||
|
Loading…
Reference in New Issue
Block a user