From 44fb3ad4296ca63c223fe2dd9f6188b2f6f57cf9 Mon Sep 17 00:00:00 2001 From: Nikolaj Date: Mon, 17 Aug 2020 14:12:54 +0200 Subject: [PATCH] Rename helper to testHelper in LogviewerTests --- src/Umbraco.Tests.Integration/Logging/LogviewerTests.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Umbraco.Tests.Integration/Logging/LogviewerTests.cs b/src/Umbraco.Tests.Integration/Logging/LogviewerTests.cs index bae74741c7..d21e86856b 100644 --- a/src/Umbraco.Tests.Integration/Logging/LogviewerTests.cs +++ b/src/Umbraco.Tests.Integration/Logging/LogviewerTests.cs @@ -35,11 +35,11 @@ namespace Umbraco.Tests.Logging { //Create an example JSON log file to check results //As a one time setup for all tets in this class/fixture - var helper = new TestHelper(); - var ioHelper = helper.IOHelper; - var hostingEnv = helper.GetHostingEnvironment(); + var testHelper = new TestHelper(); + var ioHelper = testHelper.IOHelper; + var hostingEnv = testHelper.GetHostingEnvironment(); - var loggingConfiguration = helper.GetLoggingConfiguration(hostingEnv); + var loggingConfiguration = testHelper.GetLoggingConfiguration(hostingEnv); var exampleLogfilePath = Path.Combine(TestContext.CurrentContext.TestDirectory, @"Logging\", _logfileName); _newLogfileDirPath = loggingConfiguration.LogDirectory;