From 6fe9afddcca029a2ca6760c9dcdb1c830ea22e4b Mon Sep 17 00:00:00 2001 From: Joshua Harms Date: Fri, 8 Dec 2023 22:58:45 -0600 Subject: [PATCH] Add missing assert --- ShopifySharp.Tests/Authorization_Tests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ShopifySharp.Tests/Authorization_Tests.cs b/ShopifySharp.Tests/Authorization_Tests.cs index ead4b9cfa..acd82a361 100644 --- a/ShopifySharp.Tests/Authorization_Tests.cs +++ b/ShopifySharp.Tests/Authorization_Tests.cs @@ -132,7 +132,7 @@ public void Validates_Web_Requests_With_Raw_Querystring() { var qs = "hmac=134298b94779fc1be04851ed8f972c827d9a3b4fdf6725fe97369ef422cc5746&shop=stages-test-shop-2.myshopify.com&signature=f477a85f3ed6027735589159f9da74da×tamp=1459779785"; - bool isValid = AuthorizationService.IsAuthenticRequest(qs, Utils.SecretKey); + Assert.True(AuthorizationService.IsAuthenticRequest(qs, Utils.SecretKey)); } [Fact]