diff options
Diffstat (limited to 'test/test_writer.c')
-rw-r--r-- | test/test_writer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_writer.c b/test/test_writer.c index d2f59af0..e56dd789 100644 --- a/test/test_writer.c +++ b/test/test_writer.c @@ -137,7 +137,7 @@ test_writer_cleanup(void) SerdNode* p = serd_new_uri(serd_string("http://example.org/p")); SerdNode* o = serd_new_blank(serd_string("start")); - st = serd_sink_write(sink, SERD_ANON_O_BEGIN, s, p, o, NULL); + st = serd_sink_write(sink, SERD_ANON_O, s, p, o, NULL); assert(!st); // Write the start of several nested anonymous objects @@ -147,7 +147,7 @@ test_writer_cleanup(void) SerdNode* next_o = serd_new_blank(serd_string(buf)); - st = serd_sink_write(sink, SERD_ANON_O_BEGIN, o, p, next_o, NULL); + st = serd_sink_write(sink, SERD_ANON_O, o, p, next_o, NULL); serd_node_free(o); o = next_o; |