Skip to content

Commit

Permalink
rename because I kept trying to find them by this name
Browse files Browse the repository at this point in the history
  • Loading branch information
belav committed Apr 4, 2021
1 parent 083d534 commit e22f9ab
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
public class RemovesLineBefore { }

public class RemovesDoubledLines { }

public class RemoveTrailingLine { }
}

public class ClassName
Expand All @@ -16,5 +18,9 @@ public class ClassName
var removeLineBefore = 1;

var removeDoubleLines = 2;

var removeTrailingLine = 3;
}

public int RemoveTrailingLine;
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@

namespace CSharpier.Tests.TestFiles
{
public class ExtraLinesTests : BaseTest
public class EmptyLineTests : BaseTest
{
[Test]
public void ExtraLines()
public void EmptyLines()
{
this.RunTest("ExtraLines", "ExtraLines");
this.RunTest("EmptyLines", "EmptyLines");
}
}
}

0 comments on commit e22f9ab

Please sign in to comment.