aboutsummaryrefslogtreecommitdiffstats
path: root/tests/read_chunk_test.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-08-14 16:05:10 +0200
committerDavid Robillard <d@drobilla.net>2020-10-27 13:13:58 +0100
commitc5fb8c6326dfe8c46fe2247e611ae1bf94275da0 (patch)
tree2e5b4424924f395922c70f32d4f83c5d2853241a /tests/read_chunk_test.c
parent2f2f791edb3ae4ccb825db548050461568570e03 (diff)
downloadserd-c5fb8c6326dfe8c46fe2247e611ae1bf94275da0.tar.gz
serd-c5fb8c6326dfe8c46fe2247e611ae1bf94275da0.tar.bz2
serd-c5fb8c6326dfe8c46fe2247e611ae1bf94275da0.zip
Merge datatype and/or language into node
This moves closer to the sord API, and is more convenient in most cases.
Diffstat (limited to 'tests/read_chunk_test.c')
-rw-r--r--tests/read_chunk_test.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/read_chunk_test.c b/tests/read_chunk_test.c
index 93291e01..6515df32 100644
--- a/tests/read_chunk_test.c
+++ b/tests/read_chunk_test.c
@@ -53,9 +53,7 @@ on_statement(void* handle,
const SerdNode* graph,
const SerdNode* subject,
const SerdNode* predicate,
- const SerdNode* object,
- const SerdNode* object_datatype,
- const SerdNode* object_lang)
+ const SerdNode* object)
{
(void)handle;
(void)flags;
@@ -63,8 +61,6 @@ on_statement(void* handle,
(void)subject;
(void)predicate;
(void)object;
- (void)object_datatype;
- (void)object_lang;
++n_statement;
return SERD_SUCCESS;