Minor 3.x Updates (#339)

* remove unnecessary call

* Refactoring test fixture
This commit is contained in:
Steve Smith
2019-12-18 16:59:25 -05:00
committed by GitHub
parent e53117b952
commit fa8839e1d8
9 changed files with 20 additions and 28 deletions

View File

@@ -1,5 +1,4 @@
using Microsoft.eShopWeb.FunctionalTests.Web.Controllers;
using Microsoft.eShopWeb.Web;
using Microsoft.eShopWeb.FunctionalTests.Web;
using System.Net.Http;
using System.Threading.Tasks;
using Xunit;
@@ -7,9 +6,9 @@ using Xunit;
namespace Microsoft.eShopWeb.FunctionalTests.WebRazorPages
{
[Collection("Sequential")]
public class HomePageOnGet : IClassFixture<CustomWebApplicationFactory<Startup>>
public class HomePageOnGet : IClassFixture<WebTestFixture>
{
public HomePageOnGet(CustomWebApplicationFactory<Startup> factory)
public HomePageOnGet(WebTestFixture factory)
{
Client = factory.CreateClient();
}