Moved IOHelper to abstractions

This commit is contained in:
Bjarke Berg
2019-12-05 10:41:58 +01:00
parent 3a7ef42a6c
commit 204bbd5c46
16 changed files with 107 additions and 112 deletions

View File

@@ -57,7 +57,7 @@ namespace Umbraco.Tests.Strings
[TestCase("/Test.js function(){return true;}", false)]
public void Detect_Is_JavaScript_Path(string input, bool result)
{
var output = input.DetectIsJavaScriptPath();
var output = input.DetectIsJavaScriptPath(IOHelper);
Assert.AreEqual(result, output.Success);
}