summaryrefslogtreecommitdiff
path: root/api_test
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2016-10-11 14:51:42 +0200
committerJohn MacFarlane <jgm@berkeley.edu>2016-10-11 14:51:42 +0200
commit636d6018ea6bc6697b6491e0e47c4ae1ccad32fe (patch)
treee07a56b1ad0d8cda272077350175b985185a8584 /api_test
parent85d47d07d676b8bca1d98efee45d25af011a813b (diff)
Ran 'make format' to reformat code.
Diffstat (limited to 'api_test')
-rw-r--r--api_test/main.c3
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);
}