From 6dd5e04a2be26e82ed8df8227e86a819fdd556f4 Mon Sep 17 00:00:00 2001 From: Paul Johnson Date: Thu, 17 Dec 2020 11:12:13 +0000 Subject: [PATCH] Fix broken integration test, must set ServiceProvider before using --- .../TestServerTest/UmbracoTestServerTestBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Tests.Integration/TestServerTest/UmbracoTestServerTestBase.cs b/src/Umbraco.Tests.Integration/TestServerTest/UmbracoTestServerTestBase.cs index 87ac4505e5..8e6c02ca15 100644 --- a/src/Umbraco.Tests.Integration/TestServerTest/UmbracoTestServerTestBase.cs +++ b/src/Umbraco.Tests.Integration/TestServerTest/UmbracoTestServerTestBase.cs @@ -71,8 +71,8 @@ namespace Umbraco.Tests.Integration.TestServerTest // call startup builder.Configure(app => { - UseTestDatabase(app.ApplicationServices); Services = app.ApplicationServices; + UseTestDatabase(app.ApplicationServices); Configure(app); });