diff options
author | Mitya Selivanov <0x7fffff@guattari.ru> | 2022-08-07 09:48:28 +0400 |
---|---|---|
committer | Mitya Selivanov <0x7fffff@guattari.ru> | 2022-08-07 09:48:28 +0400 |
commit | 8589d6ff0c31701adfb9e18f46da471bbcf36020 (patch) | |
tree | 33cf7d1bc40a4a903c7539c9a1c1c321d155570a /source/test/unittests/input_stream.test.c | |
parent | 3c5f3944a6edf5880ebea580a547c284641e5188 (diff) | |
download | kit-8589d6ff0c31701adfb9e18f46da471bbcf36020.zip |
Refactor
Diffstat (limited to 'source/test/unittests/input_stream.test.c')
-rw-r--r-- | source/test/unittests/input_stream.test.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); |