Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp committed Jul 12, 2021
1 parent 3f1606b commit a9bede2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/DiffEngine.Tests/DefinitionsTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ static void AddToolLink(StreamWriter writer, Definition tool)

static string GetOsSupport(Definition tool)
{
StringBuilder builder = new();
var builder = new StringBuilder();
if (tool.Windows != null)
{
builder.Append("Win/");
Expand Down
3 changes: 1 addition & 2 deletions src/DiffEngine.Tests/LinuxOsxProcessTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
public class LinuxOsxProcessTests :
XunitContextBase
{

[Fact]
public void TryParseWithZshInstalled()
{
Expand All @@ -14,7 +13,7 @@ public void TryParseWithZshInstalled()
Assert.Equal(20872, processCommand.Process);
Assert.Equal("-zsh", processCommand.Command);
}

[Fact]
public void TryParse()
{
Expand Down

0 comments on commit a9bede2

Please sign in to comment.