Skip to content

Commit 8fb145c

Browse files
E2e test
Signed-off-by: Vishesh Tanksale <vtanksale@nvidia.com>
1 parent a873fa7 commit 8fb145c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/e2e/nim-operator_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ var _ = Describe("NIM Operator", Ordered, func() {
141141
Eventually(func() bool {
142142
nimCacheObject, _ := cli.AppsV1alpha1().NIMCaches(testNamespace.Name).Get(ctx, nimCache.Name, metav1.GetOptions{})
143143
return nimCacheObject.Status.State == v1alpha1.NimCacheStatusReady
144-
}, 2*time.Minute, 5*time.Second).Should(BeTrue())
144+
}, Timeout, 5*time.Second).Should(BeTrue())
145145

146146
// Create a NIMService object
147147
By("Creating a NIMService object")
@@ -192,7 +192,7 @@ var _ = Describe("NIM Operator", Ordered, func() {
192192
Eventually(func() bool {
193193
nimCacheObject, _ := cli.AppsV1alpha1().NIMCaches(testNamespace.Name).Get(ctx, nimCache.Name, metav1.GetOptions{})
194194
return nimCacheObject.Status.State == v1alpha1.NimCacheStatusReady
195-
}, 10*time.Minute, 5*time.Second).Should(BeTrue())
195+
}, Timeout, 5*time.Second).Should(BeTrue())
196196

197197
// Create a NIMService object
198198
By("Creating a NIMService object")

0 commit comments

Comments
 (0)