Update delete_test.go (#1471)

This commit is contained in:
devrajmaker 2021-10-05 13:23:52 +05:30 committed by GitHub
parent 687f74fba8
commit c8110f1cd9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ func TestDeleteWithError(t *testing.T) {
out, err := executePingSourceCommand(pingClient, nil, "delete", "testsource") out, err := executePingSourceCommand(pingClient, nil, "delete", "testsource")
assert.ErrorContains(t, err, "testsource") assert.ErrorContains(t, err, "testsource")
util.ContainsAll(out, "Usage", "no such", "testsource") assert.Assert(t, util.ContainsAll(out, "Usage", "no such", "testsource"))
pingRecorder.Validate() pingRecorder.Validate()
} }