1
0
mirror of https://github.com/bitwarden/server synced 2026-01-03 00:53:37 +00:00

fix warnings

This commit is contained in:
Kyle Spearrin
2020-01-10 08:47:58 -05:00
parent 29580684a3
commit 7fd6e4359d
12 changed files with 28 additions and 20 deletions

View File

@@ -1,4 +1,4 @@
using System;
using System;
using Bit.Core.Services;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Logging;
@@ -12,13 +12,13 @@ namespace Bit.Core.Test.Services
private readonly AmazonSesMailDeliveryService _sut;
private readonly GlobalSettings _globalSettings;
private readonly IHostingEnvironment _hostingEnvironment;
private readonly IWebHostEnvironment _hostingEnvironment;
private readonly ILogger<AmazonSesMailDeliveryService> _logger;
public AmazonSesMailDeliveryServiceTests()
{
_globalSettings = new GlobalSettings();
_hostingEnvironment = Substitute.For<IHostingEnvironment>();
_hostingEnvironment = Substitute.For<IWebHostEnvironment>();
_logger = Substitute.For<ILogger<AmazonSesMailDeliveryService>>();
_sut = new AmazonSesMailDeliveryService(
_globalSettings,