Minor formatting fix
This commit is contained in:
parent
69f5f7664a
commit
1d5fb6bbbd
1 changed files with 5 additions and 1 deletions
|
@ -273,7 +273,11 @@ int main(void) {
|
||||||
buf = c_simple_http_path_to_generated("/", &config);
|
buf = c_simple_http_path_to_generated("/", &config);
|
||||||
ASSERT_TRUE(buf != NULL);
|
ASSERT_TRUE(buf != NULL);
|
||||||
printf("%s\n", buf);
|
printf("%s\n", buf);
|
||||||
ASSERT_TRUE(strcmp(buf, "<h1> Some text. </h1><br><h2> More text. </h2>") == 0);
|
ASSERT_TRUE(
|
||||||
|
strcmp(
|
||||||
|
buf,
|
||||||
|
"<h1> Some text. </h1><br><h2> More text. </h2>")
|
||||||
|
== 0);
|
||||||
simple_archiver_helper_cleanup_c_string(&buf);
|
simple_archiver_helper_cleanup_c_string(&buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue