Skip to content
Snippets Groups Projects
Commit 93a03c9d authored by Michał Bień's avatar Michał Bień
Browse files

fix 5 for janitor tests part 6

parent 9f35bd16
No related branches found
No related tags found
No related merge requests found
...@@ -225,7 +225,7 @@ func TestConfigServiceServer_DeleteIfExists(t *testing.T) { ...@@ -225,7 +225,7 @@ func TestConfigServiceServer_DeleteIfExists(t *testing.T) {
//Should return ok on configmap check if missing //Should return ok on configmap check if missing
res, err = server.DeleteIfExists(context.Background(), &req) res, err = server.DeleteIfExists(context.Background(), &req)
if err == nil || res.Status != v1.Status_OK { if err != nil || res.Status != v1.Status_OK {
t.Fail() t.Fail()
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment