From 49ee162e57da055b2fb2b9d2196d234b55dfcec6 Mon Sep 17 00:00:00 2001 From: Slawek Figiel Date: Tue, 23 Jul 2024 15:50:42 +0000 Subject: [PATCH] [#1437] Apply 1 suggestion to 1 file --- backend/server/agentcomm/puller_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/server/agentcomm/puller_test.go b/backend/server/agentcomm/puller_test.go index 89eb7e4ac..528053202 100644 --- a/backend/server/agentcomm/puller_test.go +++ b/backend/server/agentcomm/puller_test.go @@ -92,7 +92,7 @@ func TestExecutePullerWhileDatabaseIsDown(t *testing.T) { require.Eventually(t, func() bool { // Periodic executor updates the interval after the pulling. So, the // counter is incremented on failure. If the puller is still running, - // the counter should incremented more times. + // the counter should be incremented more times. currentCallCount := callCount.Load() return currentCallCount >= callCountAfterFailure+2 }, 5*time.Second, time.Second)