Skip to content

Commit

Permalink
Fixed release issue and broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
IngvarX committed Jun 10, 2020
1 parent a194065 commit a379855
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Camelot/Camelot.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<IsPackable>false</IsPackable>
<Version>0.1.1</Version>
Expand Down
2 changes: 1 addition & 1 deletion tests/Camelot.Services.Tests/PathServiceTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public void TestGetCommonRootDirectory(string[] files, string expectedDirectory)
{
var actualDirectory = _pathService.GetCommonRootDirectory(files);

Assert.Equal(expectedDirectory, actualDirectory);
Assert.Equal(expectedDirectory, actualDirectory.Replace("\\", "/"));
}
}
}

0 comments on commit a379855

Please sign in to comment.