From 06bc73c6fdf986eb5d13943b497992a947661bb1 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 9 Jul 2021 21:36:52 -0400 Subject: Replace SERD_WRITE_STRICT flag with SERD_WRITE_LAX The unset value for flags should represent the best default, which in this case is strict parsing. Lax parsing is the riskier opt-in option. --- test/test_reader_writer.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'test/test_reader_writer.c') diff --git a/test/test_reader_writer.c b/test/test_reader_writer.c index abea37b3..3cacd4be 100644 --- a/test/test_reader_writer.c +++ b/test/test_reader_writer.c @@ -370,9 +370,8 @@ faulty_sink(const void* const buf, static void test_write_errors(void) { - SerdWorld* const world = serd_world_new(); - ErrorContext ctx = {0U, 0U}; - const SerdWriterFlags style = (SerdWriterFlags)SERD_WRITE_STRICT; + SerdWorld* const world = serd_world_new(); + ErrorContext ctx = {0U, 0U}; const size_t max_offsets[] = {0, 386, 1911, 2003, 386}; @@ -385,7 +384,7 @@ test_write_errors(void) SerdEnv* const env = serd_env_new(serd_empty_string()); SerdWriter* const writer = - serd_writer_new(world, syntax, style, env, faulty_sink, &ctx); + serd_writer_new(world, syntax, 0U, env, faulty_sink, &ctx); const SerdSink* const sink = serd_writer_sink(writer); SerdReader* const reader = serd_reader_new(world, SERD_TRIG, sink, 4096U); @@ -413,8 +412,8 @@ test_writer(const char* const path) SerdWorld* world = serd_world_new(); - SerdWriter* writer = - serd_writer_new(world, SERD_TURTLE, 0, env, (SerdWriteFunc)fwrite, fd); + SerdWriter* writer = serd_writer_new( + world, SERD_TURTLE, SERD_WRITE_LAX, env, (SerdWriteFunc)fwrite, fd); assert(writer); serd_writer_chop_blank_prefix(writer, "tmp"); -- cgit v1.2.1