From 3cd25c6363153747c9ef559bf324b1bb4e52121f Mon Sep 17 00:00:00 2001 From: David Justo Date: Mon, 17 Jun 2024 13:37:15 -0700 Subject: [PATCH] improve wording across diff --- test/Common/HttpApiHandlerTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Common/HttpApiHandlerTests.cs b/test/Common/HttpApiHandlerTests.cs index dc13939e1..8556ae074 100644 --- a/test/Common/HttpApiHandlerTests.cs +++ b/test/Common/HttpApiHandlerTests.cs @@ -42,7 +42,7 @@ public void CreateCheckStatusResponse_Throws_Exception_When_NotificationUrl_Miss var httpApiHandler = new HttpApiHandler(GetTestExtension(options), null); var ex = Assert.Throws(() => httpApiHandler.CreateCheckStatusResponse(new HttpRequestMessage(), string.Empty, null)); string errorMessage = "Webhooks are not configured. This may occur if the environment variable `WEBSITE_HOSTNAME` is not set (should be automatically set for Azure Functions). " + - "Try setting it to : as the value, where : refers to the address that can be used to reach your function app from outside, or the DNS name of the app."; + "Try setting it to the appropiate URI to reach your app. For example: the DNS name of the app, or a value of the form :."; Assert.Equal(errorMessage, ex.Message); }