Removed async update check due to threading issue

This commit is contained in:
Ben
2015-07-31 22:13:58 +01:00
parent 94146467a3
commit 4185c3dbde
4 changed files with 13 additions and 16 deletions

View File

@@ -8,13 +8,13 @@ namespace Filtration.Tests.Services
public class TestHTTPService
{
[Test]
public async void GetContent_FetchesDataFromUrl()
public void GetContent_FetchesDataFromUrl()
{
// Arrange
var service = new HTTPService();
// Act
var result = await service.GetContentAsync("http://ben-wallis.github.io/Filtration/filtration_version.xml");
var result = service.GetContent("http://ben-wallis.github.io/Filtration/filtration_version.xml");
// Assert
Assert.IsNotNull(result);