Cleanup usages

This commit is contained in:
jvyden 2021-10-20 00:06:14 -04:00
parent 930c6b1e41
commit 8ad04860ee
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278
3 changed files with 0 additions and 7 deletions

View file

@ -1,6 +1,5 @@
using System.IO; using System.IO;
using System.Net.Http; using System.Net.Http;
using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Xml.Serialization; using System.Xml.Serialization;
using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Hosting;

View file

@ -8,11 +8,7 @@ using Xunit.Abstractions;
namespace ProjectLighthouse.Tests { namespace ProjectLighthouse.Tests {
public class MatchTests : LighthouseTest { public class MatchTests : LighthouseTest {
private readonly ITestOutputHelper testOutputHelper;
private static SemaphoreSlim semaphore = new(1, 1); private static SemaphoreSlim semaphore = new(1, 1);
public MatchTests(ITestOutputHelper testOutputHelper) {
this.testOutputHelper = testOutputHelper;
}
[DatabaseFact] [DatabaseFact]
public async Task ShouldReturnOk() { public async Task ShouldReturnOk() {

View file

@ -1,5 +1,3 @@
using System.Collections.Generic;
using System.Net.Http;
using System.Threading.Tasks; using System.Threading.Tasks;
using ProjectLighthouse.Types; using ProjectLighthouse.Types;
using Xunit; using Xunit;