Skip to content

Commit

Permalink
Merge pull request #1034 from clement911/master
Browse files Browse the repository at this point in the history
Skipping failing test that goes into infinite loop
  • Loading branch information
clement911 committed Feb 25, 2024
2 parents cd8e9ec + d23cebc commit 2818871
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ShopifySharp.Tests/ShopifyException_Tests.cs
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 2818871

Please sign in to comment.