mirror of
https://github.com/bitwarden/server.git
synced 2024-11-25 12:45:18 +01:00
fixed a broken test (#1027)
* fixed a broken test * actually didn't need this line
This commit is contained in:
parent
ea5ce21e50
commit
0d7c876904
@ -16,6 +16,7 @@ namespace Bit.Core.Test.Services
|
||||
private readonly IAppleIapService _appleIapService;
|
||||
private readonly GlobalSettings _globalSettings;
|
||||
private readonly ILogger<StripePaymentService> _logger;
|
||||
private readonly ITaxRateRepository _taxRateRepository;
|
||||
|
||||
public StripePaymentServiceTests()
|
||||
{
|
||||
@ -30,7 +31,8 @@ namespace Bit.Core.Test.Services
|
||||
_userRepository,
|
||||
_globalSettings,
|
||||
_appleIapService,
|
||||
_logger
|
||||
_logger,
|
||||
_taxRateRepository
|
||||
);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user