From c2f6768cbc08a2722821df9e12995ee47a4404b9 Mon Sep 17 00:00:00 2001 From: Eric Tune Date: Mon, 26 Oct 2015 16:36:01 -0700 Subject: [PATCH] Fix. --- test/e2e/job.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/job.go b/test/e2e/job.go index 39ec0169151..6b0d3e2aac6 100644 --- a/test/e2e/job.go +++ b/test/e2e/job.go @@ -88,7 +88,7 @@ var _ = Describe("Job", func() { // Can't use the failOnce approach because that relies // on an emptyDir, which is not preserved across new pods. // Worst case analysis: 15 failures, each taking 1 minute to - // run doe to some slowness, 1 in 2^15 chance of happening, + // run due to some slowness, 1 in 2^15 chance of happening, // causing test flake. Should be very rare. job := newTestJob("randomlySucceedOrFail", "rand-non-local", api.RestartPolicyNever, parallelism, completions) job, err := createJob(f.Client, f.Namespace.Name, job)