summaryrefslogtreecommitdiff
path: root/src/SMAPI.Tests/Toolkit
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2020-09-08 18:12:57 -0400
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2020-09-08 18:12:57 -0400
commit7580f87029ac9f778ec632c7ccaed489d7ca1364 (patch)
tree5d18f8a0590adc047ffe62fae2584b7fd632bcee /src/SMAPI.Tests/Toolkit
parent8a51279ce943ff74b45ec7af308ecf59d73ace9b (diff)
downloadSMAPI-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.cs4
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.")]