summaryrefslogtreecommitdiff
path: root/source/tests/input_stream.test.c
diff options
context:
space:
mode:
authorMitya Selivanov <automainint@guattari.tech>2023-09-03 22:20:31 +0200
committerMitya Selivanov <automainint@guattari.tech>2023-09-03 22:20:31 +0200
commitee0a2e7e1965200ec5968ec310bee429db819dde (patch)
tree8d5632e29233d87a6a14de1165abac7e99bd879a /source/tests/input_stream.test.c
parent835e1fcd131c63ee2b3b647e327b33a3bfb369e3 (diff)
downloadkit-ee0a2e7e1965200ec5968ec310bee429db819dde.zip
Remove const
Diffstat (limited to 'source/tests/input_stream.test.c')
-rw-r--r--source/tests/input_stream.test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/tests/input_stream.test.c b/source/tests/input_stream.test.c
index 61c2254..46ee0dd 100644
--- a/source/tests/input_stream.test.c
+++ b/source/tests/input_stream.test.c
@@ -12,8 +12,8 @@ TEST("input stream wrap string") {
is_handle_t in = IS_WRAP_STRING(foo_ref);
- char buf[4];
- out_str_t buf_ref = { .size = sizeof(buf), .values = buf };
+ char buf[4];
+ str_t buf_ref = { .size = sizeof(buf), .values = buf };
REQUIRE(IS_READ(in, buf_ref) == buf_ref.size);
REQUIRE(AR_EQUAL(foo_ref, bar_ref));