From 8589d6ff0c31701adfb9e18f46da471bbcf36020 Mon Sep 17 00:00:00 2001 From: Mitya Selivanov <0x7fffff@guattari.ru> Date: Sun, 7 Aug 2022 09:48:28 +0400 Subject: Refactor --- source/test/unittests/input_stream.test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/test/unittests/input_stream.test.c') diff --git a/source/test/unittests/input_stream.test.c b/source/test/unittests/input_stream.test.c index e646983..7dce043 100644 --- a/source/test/unittests/input_stream.test.c +++ b/source/test/unittests/input_stream.test.c @@ -7,8 +7,8 @@ TEST("input stream wrap string") { char foo[] = "test"; char bar[] = "test"; - cstr_t foo_ref = { .size = sizeof(foo) - 1, .values = foo }; - cstr_t bar_ref = { .size = sizeof(bar) - 1, .values = bar }; + str_t foo_ref = { .size = sizeof(foo) - 1, .values = foo }; + str_t bar_ref = { .size = sizeof(bar) - 1, .values = bar }; is_handle_t in = IS_WRAP_STRING(foo_ref); -- cgit v1.2.3