summaryrefslogtreecommitdiff
path: root/source/tests/input_stream.test.c
diff options
context:
space:
mode:
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));