diff options
Diffstat (limited to 'src/SMAPI.Tests/Toolkit')
| -rw-r--r-- | src/SMAPI.Tests/Toolkit/PathUtilitiesTests.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/SMAPI.Tests/Toolkit/PathUtilitiesTests.cs b/src/SMAPI.Tests/Toolkit/PathUtilitiesTests.cs index 55785bfa..8ec33bcf 100644 --- a/src/SMAPI.Tests/Toolkit/PathUtilitiesTests.cs +++ b/src/SMAPI.Tests/Toolkit/PathUtilitiesTests.cs @@ -47,9 +47,9 @@ namespace SMAPI.Tests.Toolkit [TestCase("C:/boop", ExpectedResult = "C:/boop")] [TestCase(@"C:\usr\bin//.././boop.exe", ExpectedResult = "C:/usr/bin/.././boop.exe")] #endif - public string NormalizePathSeparators(string path) + public string NormalizePath(string path) { - return PathUtilities.NormalizePathSeparators(path); + return PathUtilities.NormalizePath(path); } [Test(Description = "Assert that GetRelativePath returns the expected values.")] |
