From e146f16ba9ce08dbfa4d7c1f7365ddb5c6c8abc0 Mon Sep 17 00:00:00 2001 From: MrDave1999 Date: Thu, 11 Jan 2024 19:45:33 -0500 Subject: [PATCH] test: Change URI value --- samples/Example.PluginApp/Test/SqlTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/Example.PluginApp/Test/SqlTests.cs b/samples/Example.PluginApp/Test/SqlTests.cs index 02e900a..cbdd19b 100644 --- a/samples/Example.PluginApp/Test/SqlTests.cs +++ b/samples/Example.PluginApp/Test/SqlTests.cs @@ -34,7 +34,7 @@ public async Task Get_WhenNoPluginIsLoaded_ShouldNotThrowException() Environment.SetEnvironmentVariable("PLUGINS", " "); using var factory = new WebApplicationFactory(); var client = factory.CreateClient(); - var requestUri = "/api/Hello"; + var requestUri = "/api/Sql/GetOrderSql"; // Act var httpResponse = await client.GetAsync(requestUri);