Merge pull request #1914 from fluxcd/fix-event-hub-test

pull/1915/head
Hidde Beydals 4 years ago committed by GitHub
commit 10475b24c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -814,7 +814,7 @@ func TestEventHubNotification(t *testing.T) {
if event.InvolvedObject.Kind != "Kustomization" { if event.InvolvedObject.Kind != "Kustomization" {
return false return false
} }
if event.Message != "Health check passed" { if strings.Contains(event.Message, "Health check passed") {
return false return false
} }
return true return true

Loading…
Cancel
Save