Removed IOHelper.Default, to prepare for injecting

This commit is contained in:
Bjarke Berg
2019-11-26 08:15:00 +01:00
parent 0354fc91bc
commit 323a60fa76
37 changed files with 108 additions and 113 deletions

View File

@@ -4,6 +4,7 @@ using System.Text;
using System.Threading;
using NUnit.Framework;
using Umbraco.Core.IO;
using Umbraco.Tests.TestHelpers;
namespace Umbraco.Tests.IO
@@ -14,7 +15,7 @@ namespace Umbraco.Tests.IO
{
public PhysicalFileSystemTests()
: base(new PhysicalFileSystem(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "FileSysTests"),
"/Media/", new IOHelper()))
"/Media/", TestHelper.IOHelper))
{ }
[SetUp]