diff --git a/tests/core/pistringTest.cpp b/tests/core/pistringTest.cpp index 3128de5f..89f420a3 100644 --- a/tests/core/pistringTest.cpp +++ b/tests/core/pistringTest.cpp @@ -170,7 +170,7 @@ TEST(PIString_Tests, construct_from_pichar_size){ ASSERT_EQ(res, PIString(str1, 3)); } -TEST(PIString_Tests, construct_from_char_size){ +TEST(PIString_Tests, construct_from_cstring_size){ char str1[] = "good"; PIString res = "good"; ASSERT_EQ(res, PIString(str1, 4));