From 6368109074b1b6168921ab88d77322754b37b98a Mon Sep 17 00:00:00 2001 From: Joshua Harms Date: Tue, 30 Jan 2024 12:20:29 -0600 Subject: [PATCH] Use shopDomain constant --- ShopifySharp.Tests/Utilities/ShopifyOauthUtilityTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ShopifySharp.Tests/Utilities/ShopifyOauthUtilityTests.cs b/ShopifySharp.Tests/Utilities/ShopifyOauthUtilityTests.cs index 0047e8c4..c9d12fa3 100644 --- a/ShopifySharp.Tests/Utilities/ShopifyOauthUtilityTests.cs +++ b/ShopifySharp.Tests/Utilities/ShopifyOauthUtilityTests.cs @@ -186,7 +186,7 @@ public async Task RefreshAccessTokenAsync_ShouldNotDisposeHttpClient() }); var send = async () => { - var response = await client.SendAsync(new HttpRequestMessage(HttpMethod.Get, "http://127.0.0.1")); + var response = await client.SendAsync(new HttpRequestMessage(HttpMethod.Get, shopDomain)); response.EnsureSuccessStatusCode(); };