Skip to content

Commit 6b1484d

Browse files
Ramp up timeout to wait for PVC expansion
TODO: Provide an assertion message that gives us information about the PVC such as events or conditions. So that we can know why it has not expanded.
1 parent 49f10a3 commit 6b1484d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

system_tests/system_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ var _ = Describe("Operator", func() {
6666
Expect(rmqClusterClient.Delete(context.TODO(), cluster)).To(Succeed())
6767
})
6868

69-
FIt("works", func() {
69+
It("works", func() {
7070
By("publishing and consuming a message", func() {
7171
response := alivenessTest(hostname, port, username, password)
7272
Expect(response.Status).To(Equal("ok"))
@@ -347,7 +347,7 @@ CONSOLE_LOG=new`
347347
pvc, err := clientSet.CoreV1().PersistentVolumeClaims(namespace).Get(ctx, pvcName, metav1.GetOptions{})
348348
Expect(err).ToNot(HaveOccurred())
349349
return pvc.Spec.Resources.Requests["storage"]
350-
}, "5m", 10).Should(Equal(newCapacity))
350+
}, "10m", 10).Should(Equal(newCapacity))
351351

352352
// storage capacity reflected in the pod
353353
Eventually(func() int {

0 commit comments

Comments
 (0)