diff options
Diffstat (limited to 'api_test/main.c')
-rw-r--r-- | api_test/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/api_test/main.c b/api_test/main.c index d87e446..17e1582 100644 --- a/api_test/main.c +++ b/api_test/main.c @@ -737,7 +737,8 @@ static void utf8(test_batch_runner *runner) { static const char string_with_nul_lf[] = "```\n\0\n```\n"; html = cmark_markdown_to_html( string_with_nul_lf, sizeof(string_with_nul_lf) - 1, CMARK_OPT_DEFAULT); - STR_EQ(runner, html, "<pre><code>\xef\xbf\xbd\n</code></pre>\n", "utf8 with \\0\\n"); + STR_EQ(runner, html, "<pre><code>\xef\xbf\xbd\n</code></pre>\n", + "utf8 with \\0\\n"); free(html); } |