Don't really need that test anymore

This commit is contained in:
Timothy Baldridge 2020-05-22 15:52:05 -06:00
parent 40592d72c9
commit 3e935d2e6c

View File

@ -1,17 +0,0 @@
using System.Threading.Tasks;
using Wabbajack.Common.Exceptions;
using Xunit;
namespace Wabbajack.Common.Test
{
public class HttpClientTests
{
[Fact]
public async Task DoesntReuseHttpMessages()
{
var client = new Common.Http.Client();
// If we reuse the HTTP message this will throw a invalid operation exception
await Assert.ThrowsAsync<HttpException>(async () => await client.GetAsync("http://blerg.blaz.bloz.buz"));
}
}
}