From 4225e255d24d5dc3c22d05eae2193ca51d80e5fa Mon Sep 17 00:00:00 2001 From: Tom Runyon Date: Fri, 9 Dec 2022 13:32:07 -0500 Subject: [PATCH] Fixed tests Signed-off-by: Tom Runyon --- pkg/registry/client_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/registry/client_test.go b/pkg/registry/client_test.go index 33a51e6da..03064d5b3 100644 --- a/pkg/registry/client_test.go +++ b/pkg/registry/client_test.go @@ -497,7 +497,7 @@ func (suite *RegistryClientTestSuite) Test_4_Logout() { // error as logout happened for TLSDockerRegistryHost in last step err = suite.RegistryClientWithCA.Logout(suite.TLSDockerRegistryHost) - suite.NotNil(err, "no error logging out of insecure registry with ca cert") + suite.Nil(err, "no error logging out of registry with ca cert") }