Some more fixes for Set_Label tests

This commit is contained in:
maron2000
2025-01-12 00:11:47 +09:00
parent befd0dc78e
commit c10b11554f

View File

@@ -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)
{
@@ -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)
{
@@ -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)
{