From f7f464920bde2fd851abf91e0d09a30dc4e7fc80 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Sun, 26 Jan 2020 22:45:59 -0800 Subject: [PATCH] Fix ampersand tests --- DICUI.Test/Utilities/DumpEnvironmentTest.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DICUI.Test/Utilities/DumpEnvironmentTest.cs b/DICUI.Test/Utilities/DumpEnvironmentTest.cs index 28159437..5a58bbba 100644 --- a/DICUI.Test/Utilities/DumpEnvironmentTest.cs +++ b/DICUI.Test/Utilities/DumpEnvironmentTest.cs @@ -36,8 +36,8 @@ namespace DICUI.Test [InlineData("super\\hero", "blah.bin", "super\\hero", "blah.bin")] [InlineData("super.hero", "blah.bin", "super.hero", "blah.bin")] [InlineData("superhero", "blah.rev.bin", "superhero", "blah.rev.bin")] - [InlineData("super&hero", "blah.bin", "super_hero", "blah.bin")] - [InlineData("superhero", "blah&foo.bin", "superhero", "blah_foo.bin")] + [InlineData("super&hero", "blah.bin", "super&hero", "blah.bin")] + [InlineData("superhero", "blah&foo.bin", "superhero", "blah&foo.bin")] public void FixOutputPathsTest(string outputDirectory, string outputFilename, string expectedOutputDirectory, string expectedOutputFilename) { var env = new DumpEnvironment