From 5d9e46072c7c240de62a87ec26898facafdddbd6 Mon Sep 17 00:00:00 2001 From: Maxim Date: Mon, 15 Aug 2022 18:48:22 +0300 Subject: [PATCH] Test case renamed. --- str_test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/str_test.c b/str_test.c index ae47fb0..677bd7c 100644 --- a/str_test.c +++ b/str_test.c @@ -64,7 +64,7 @@ void test_str_lit(void) } static -void test_str_dup(void) +void test_str_cpy(void) { str s = str_null; @@ -872,7 +872,7 @@ int main(void) { // tests test_str_lit(); - test_str_dup(); + test_str_cpy(); test_str_clear(); test_str_move(); test_str_pass();