From 345ab5c379fb6a273ab56d6510d8452c768552bf Mon Sep 17 00:00:00 2001 From: GAMA Date: Fri, 22 Jan 2021 16:28:33 +0300 Subject: [PATCH] Rename 1 test --- tests/core/pistringTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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));