Skip to content

Commit

Permalink
Assert err not checker (#5570)
Browse files Browse the repository at this point in the history
  • Loading branch information
DeepikaDixit authored and Ilya Kislenko committed May 3, 2019
1 parent 15cb770 commit 9d6843e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/kube/job_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ func (s *JobSuite) TestJobsWaitOnNonExistentJob(c *C) {

// Call WaitForCompletion on non-existent kubernetes job.
err = job.WaitForCompletion(context.Background())
c.Assert(c, NotNil)
c.Assert(err, NotNil)
}

func (s *JobSuite) TestJobsVolumes(c *C) {
Expand Down

0 comments on commit 9d6843e

Please sign in to comment.