diff options
Diffstat (limited to 'test/test_writer.c')
-rw-r--r-- | test/test_writer.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/test_writer.c b/test/test_writer.c index e56dd789..9b885dd6 100644 --- a/test/test_writer.c +++ b/test/test_writer.c @@ -177,10 +177,10 @@ test_strict_write(void) FILE* const fd = fopen(path, "wb"); assert(fd); - SerdWorld* world = serd_world_new(); - SerdEnv* const env = serd_env_new(serd_empty_string()); - SerdWriter* const writer = serd_writer_new( - world, SERD_TURTLE, (SerdWriterFlags)SERD_WRITE_STRICT, env, null_sink, fd); + SerdWorld* world = serd_world_new(); + SerdEnv* const env = serd_env_new(serd_empty_string()); + SerdWriter* const writer = + serd_writer_new(world, SERD_TURTLE, 0U, env, null_sink, fd); assert(writer); |