From ee946a0de13a22ff83c288aa64ef3f4fd381da75 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 5 Apr 2023 18:28:27 -0400 Subject: Simplify statement flags --- test/test_writer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test') 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; -- cgit v1.2.1