Merge pull request #75629 from globervinodhn/correct_testname_active_deadline

Correct test name for existing E2E related to active deadline in jobs
This commit is contained in:
Kubernetes Prow Robot 2019-07-17 18:16:12 -07:00 committed by GitHub
commit 84937aeaf2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -123,7 +123,7 @@ var _ = SIGDescribe("Job", func() {
framework.ExpectNoError(err, "failed to ensure job completion in namespace: %s", f.Namespace.Name)
})
ginkgo.It("should exceed active deadline", func() {
ginkgo.It("should fail when exceeds active deadline", func() {
ginkgo.By("Creating a job")
var activeDeadlineSeconds int64 = 1
job := jobutil.NewTestJob("notTerminate", "exceed-active-deadline", v1.RestartPolicyNever, parallelism, completions, &activeDeadlineSeconds, backoffLimit)