From 0b16d6dee19c48265bfdf870d1f540030ed44b58 Mon Sep 17 00:00:00 2001 From: Shannon Date: Tue, 12 Nov 2019 16:44:13 +1100 Subject: [PATCH] fix build --- src/Umbraco.Core/Runtime/CoreRuntime.cs | 2 +- src/Umbraco.Tests/Runtimes/StandaloneTests.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Umbraco.Core/Runtime/CoreRuntime.cs b/src/Umbraco.Core/Runtime/CoreRuntime.cs index 2c4018fbb3..87cbf8faf0 100644 --- a/src/Umbraco.Core/Runtime/CoreRuntime.cs +++ b/src/Umbraco.Core/Runtime/CoreRuntime.cs @@ -137,7 +137,7 @@ namespace Umbraco.Core.Runtime // main dom var mainDom = new MainDom(Logger); - // create the composition + // create the composition composition = new Composition(register, typeLoader, ProfilingLogger, _state, configs); composition.RegisterEssentials(Logger, Profiler, ProfilingLogger, mainDom, appCaches, databaseFactory, typeLoader, _state, IOHelper); diff --git a/src/Umbraco.Tests/Runtimes/StandaloneTests.cs b/src/Umbraco.Tests/Runtimes/StandaloneTests.cs index b2f1bf8461..d978c70476 100644 --- a/src/Umbraco.Tests/Runtimes/StandaloneTests.cs +++ b/src/Umbraco.Tests/Runtimes/StandaloneTests.cs @@ -258,7 +258,7 @@ namespace Umbraco.Tests.Runtimes // create the register and the composition var register = RegisterFactory.Create(); var composition = new Composition(register, typeLoader, profilingLogger, runtimeState); - composition.RegisterEssentials(logger, profiler, profilingLogger, mainDom, appCaches, databaseFactory, typeLoader, runtimeState); + composition.RegisterEssentials(logger, profiler, profilingLogger, mainDom, appCaches, databaseFactory, typeLoader, runtimeState, new IOHelper()); // create the core runtime and have it compose itself var coreRuntime = new CoreRuntime();