From 1dec97436c8ab1fab65648ccf80449d46008e2ca Mon Sep 17 00:00:00 2001 From: Jongwoo Han Date: Sun, 9 Apr 2023 01:47:42 +0900 Subject: [PATCH] Fix typo at job_test.go Signed-off-by: jongwooo --- test/integration/job/job_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/job/job_test.go b/test/integration/job/job_test.go index 1b71ced1674..2242be8593d 100644 --- a/test/integration/job/job_test.go +++ b/test/integration/job/job_test.go @@ -1456,7 +1456,7 @@ func TestJobPodsCreatedWithExponentialBackoff(t *testing.T) { t.Fatalf("Third pod should be created at least %v seconds after the second pod", 2*jobcontroller.DefaultJobBackOff) } - // The third pod should be created witin 8 seconds + // The third pod should be created within 8 seconds // This check rules out double counting if diff >= 4*jobcontroller.DefaultJobBackOff.Seconds() { t.Fatalf("Third pod should be created before %v seconds after the second pod", 4*jobcontroller.DefaultJobBackOff)