Skip to content

Commit

Permalink
Skipping failing test that goes into infinite loop
Browse files Browse the repository at this point in the history
  • Loading branch information
clement911 committed Feb 25, 2024
1 parent 586a7c9 commit d23cebc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ShopifySharp.Tests/ShopifyException_Tests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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)
{
Expand Down

0 comments on commit d23cebc

Please sign in to comment.