Skip to content
Snippets Groups Projects
Unverified Commit 10475b24 authored by Hidde Beydals's avatar Hidde Beydals Committed by GitHub
Browse files

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

parents 0e747790 a5238e86
No related branches found
No related tags found
No related merge requests found
...@@ -814,7 +814,7 @@ func TestEventHubNotification(t *testing.T) { ...@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment