Skip to content

Commit 1f645a2

Browse files
committed
Fix a test
1 parent 0db9c8a commit 1f645a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/dotnet.Tests/CommandTests/Project/Convert/DotnetProjectConvertTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ public void OutputOption()
105105
public void OutputOption_DirectoryAlreadyExists()
106106
{
107107
var testInstance = _testAssetsManager.CreateTestDirectory();
108-
var directoryPath = Path.Join(testInstance.Path, "SomeOutput");
108+
var directoryPath = Path.Join(testInstance.Path, "SomeOutput") + Path.DirectorySeparatorChar;
109109
Directory.CreateDirectory(directoryPath);
110110
File.WriteAllText(Path.Join(testInstance.Path, "MyApp.cs"), "Console.WriteLine();");
111111

0 commit comments

Comments
 (0)