Skip to content

Commit

Permalink
Update FreeShippingServiceProviderTests.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
Arunkumar0610 authored Jan 11, 2024
1 parent ce54f85 commit 1665229
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ public async Task GetShippingPrices_ShouldReturnFreeShipping()
})
};
var freeShippingServiceProvider = new FreeShippingServiceProvider(currencyServiceMock.Object);

var request = new GetShippingPriceRequest
{
OrderAmount = 60 // Exceeds the MinimumOrderAmount
Expand Down Expand Up @@ -56,7 +55,6 @@ public async Task GetShippingPrices_ShouldNotReturnFreeShipping()
})
};
var freeShippingServiceProvider = new FreeShippingServiceProvider(currencyServiceMock.Object);

var request = new GetShippingPriceRequest
{
OrderAmount = 40 // Below the MinimumOrderAmount
Expand Down

0 comments on commit 1665229

Please sign in to comment.