From bc987527d875301f014a7c6c52e155b05d22f0f7 Mon Sep 17 00:00:00 2001 From: Dimitris-Ilias Gkanatsios Date: Tue, 7 Dec 2021 15:53:23 -0800 Subject: [PATCH] additional fix --- operator/controllers/gameserverbuild_controller_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/operator/controllers/gameserverbuild_controller_test.go b/operator/controllers/gameserverbuild_controller_test.go index f35e90a5..84b93543 100644 --- a/operator/controllers/gameserverbuild_controller_test.go +++ b/operator/controllers/gameserverbuild_controller_test.go @@ -195,7 +195,7 @@ func verifyThatBuildIsUnhealthy(ctx context.Context, buildName string) { err := k8sClient.Get(ctx, types.NamespacedName{Name: buildName, Namespace: testnamespace}, &gameServerBuild) Expect(err).ShouldNot(HaveOccurred()) return gameServerBuild.Status.Health == mpsv1alpha1.BuildUnhealthy - }) + }, assertTimeout, assertPollingInterval).Should(BeTrue()) } func waitTillCountGameServersAreInitializing(ctx context.Context, buildID string, count int) {