Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions test/openshift/e2e/ginkgo/fixture/secret/fixture.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,10 @@ func HaveNonEmptyKeyValue(key string) matcher.GomegaMatcher {
return false
}

GinkgoWriter.Println("HaveNonEmptyKeyValue - Key:", key, " Have:", string(a))

return len(a) > 0
// Printing string that looks like secret causes openshift-ci to redact the entire log file, preventing investigating failures in any other tests.
empty := len(a) == 0
GinkgoWriter.Println("HaveNonEmptyKeyValue - Key:", key, " empty:", empty)
return !empty
})

}
Expand Down
Loading