Skip to content

Commit

Permalink
Fix shipping service tests
Browse files Browse the repository at this point in the history
  • Loading branch information
support committed Aug 30, 2023
1 parent 41365fa commit ff5a781
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public void Init()
_shippingProviderSettings = new ShippingProviderSettings();
_shippingSettings = new ShippingSettings();
_rateProviderMock = new Mock<IShippingRateCalculationProvider>();
_service = new ShippingService(_loggerMock.Object, _translationServiceMock.Object, _countryServiceMokc.Object,
_service = new ShippingService(_loggerMock.Object, _countryServiceMokc.Object,
new List<IShippingRateCalculationProvider>() { _rateProviderMock.Object }, _shippingProviderSettings, _shippingSettings);
}

Expand Down

0 comments on commit ff5a781

Please sign in to comment.