From 206a16f9e3ffab77c8a43f437436c3213c3f6fad Mon Sep 17 00:00:00 2001 From: Joshua Casey Date: Thu, 18 Apr 2024 21:32:54 -0500 Subject: [PATCH] Integration test fixes - updated condition messages --- .../integration/concierge_webhookauthenticator_status_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/concierge_webhookauthenticator_status_test.go b/test/integration/concierge_webhookauthenticator_status_test.go index 1b372c39e..68b019b17 100644 --- a/test/integration/concierge_webhookauthenticator_status_test.go +++ b/test/integration/concierge_webhookauthenticator_status_test.go @@ -276,7 +276,7 @@ func allSuccessfulWebhookAuthenticatorConditions() []metav1.Condition { Type: "EndpointURLValid", Status: "True", Reason: "Success", - Message: "endpoint is a valid URL", + Message: "spec.endpoint is a valid URL", }, { Type: "Ready", @@ -294,7 +294,7 @@ func allSuccessfulWebhookAuthenticatorConditions() []metav1.Condition { Type: "WebhookConnectionValid", Status: "True", Reason: "Success", - Message: "tls verified", + Message: "successfully dialed webhook server", }, } }