From d23cebc0ea531f8c8322817d2cb6f0cd48d30b4f Mon Sep 17 00:00:00 2001 From: Clement Date: Mon, 26 Feb 2024 09:58:08 +1100 Subject: [PATCH] Skipping failing test that goes into infinite loop --- ShopifySharp.Tests/ShopifyException_Tests.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ShopifySharp.Tests/ShopifyException_Tests.cs b/ShopifySharp.Tests/ShopifyException_Tests.cs index 7e4e8d885..81c569f70 100644 --- a/ShopifySharp.Tests/ShopifyException_Tests.cs +++ b/ShopifySharp.Tests/ShopifyException_Tests.cs @@ -152,7 +152,7 @@ public async Task Throws_On_Error_Object() Assert.Equal("order: Required parameter missing or invalid", error); } - [Fact] + [Fact(Skip = "This doesn't seem to generate an error anymore")] public async Task Throws_On_Error_Arrays() { //Creating an order with tax lines on both line items and the order will return an error @@ -206,6 +206,7 @@ public async Task Throws_On_Error_Arrays() try { ShopifyService.CheckResponseExceptions(string.Empty, response, rawBody); + Assert.True(false, "Expected an error"); } catch (ShopifyRateLimitException) {