Skip to content

Commit

Permalink
rename tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nietras committed Nov 18, 2023
1 parent 91107e2 commit fc56c44
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Sep.Test/SepReaderColTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public void SepReaderColTest_ToString()
}

[TestMethod]
public void SepReaderColTest_ToStringRaw()
public void SepReaderColTest_ToStringDirect()
{
Run(col => Assert.AreEqual(ColText, col.ToStringDirect()));
Run(col => Assert.AreSame(string.Empty, col.ToString()), "");
Expand Down
2 changes: 1 addition & 1 deletion src/Sep.Test/SepReaderColsTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ public unsafe void SepReaderColsTest_Select_MethodPointer_ToString()
}

[TestMethod]
public void SepReaderColsTest_Select_ToStringRaw()
public void SepReaderColsTest_Select_ToStringDirect()
{
Run((cols, range) => CollectionAssert.AreEqual(_colTexts[range], cols.Select(c => c.ToStringDirect()).ToArray()));
}
Expand Down

0 comments on commit fc56c44

Please sign in to comment.