diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-09-08 18:12:57 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-09-08 18:12:57 -0400 |
commit | 7580f87029ac9f778ec632c7ccaed489d7ca1364 (patch) | |
tree | 5d18f8a0590adc047ffe62fae2584b7fd632bcee /src/SMAPI.Tests/Toolkit | |
parent | 8a51279ce943ff74b45ec7af308ecf59d73ace9b (diff) | |
download | SMAPI-7580f87029ac9f778ec632c7ccaed489d7ca1364.tar.gz SMAPI-7580f87029ac9f778ec632c7ccaed489d7ca1364.tar.bz2 SMAPI-7580f87029ac9f778ec632c7ccaed489d7ca1364.zip |
rename PathUtilities.NormalizePathSeparator, add normalization for more cases
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.")] |