Skip to content

Commit

Permalink
Some more fixes for Set_Label tests
Browse files Browse the repository at this point in the history
  • Loading branch information
maron2000 committed Jan 11, 2025
1 parent befd0dc commit c10b115
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/drives_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ TEST(Set_Label, LongerThan11CD)
TEST(Set_Label, ShorterThan8)
{
std::string output = run_Set_Label("a123456", false);
EXPECT_EQ("A123456 ", output);
EXPECT_EQ("a123456 ", output);
}
TEST(Set_Label, ShorterThan8CD)
{
Expand All @@ -143,7 +143,7 @@ TEST(Set_Label, ShorterThan8CD)
TEST(Set_Label, EqualTo8)
{
std::string output = run_Set_Label("a1234567", false);
EXPECT_EQ("A1234567 ", output);
EXPECT_EQ("a1234567 ", output);
}
TEST(Set_Label, EqualTo8CD)
{
Expand All @@ -155,7 +155,7 @@ TEST(Set_Label, EqualTo8CD)
TEST(Set_Label, StripEndingDot)
{
std::string output = run_Set_Label("a1234567.", false);
EXPECT_EQ("A1234567. ", output);
EXPECT_EQ("a1234567. ", output);
}
TEST(Set_Label, NoStripEndingDotCD)
{
Expand Down

0 comments on commit c10b115

Please sign in to comment.