Skip to content

Commit

Permalink
Fixed potentially misleading test method names
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergio0694 committed May 7, 2020
1 parent 24c31c8 commit 6f488cd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public void Test_ReadOnlySpanExtensions_Tokenize_Empty()

[TestCategory("ReadOnlySpanExtensions")]
[TestMethod]
public void Test_ReadOnlySpanExtensions_Tokenize_Csv()
public void Test_ReadOnlySpanExtensions_Tokenize_Comma()
{
string text = "name,surname,city,year,profession,age";

Expand All @@ -150,7 +150,7 @@ public void Test_ReadOnlySpanExtensions_Tokenize_Csv()

[TestCategory("ReadOnlySpanExtensions")]
[TestMethod]
public void Test_ReadOnlySpanExtensions_Tokenize_CsvWithMissingValues()
public void Test_ReadOnlySpanExtensions_Tokenize_CommaWithMissingValues()
{
string text = ",name,,city,,,profession,,age,,";

Expand Down

0 comments on commit 6f488cd

Please sign in to comment.