aboutsummaryrefslogtreecommitdiffstats
path: root/tests/check_content_parser.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/check_content_parser.c')
-rw-r--r--tests/check_content_parser.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/check_content_parser.c b/tests/check_content_parser.c
index 2444ebb..d3ef2b8 100644
--- a/tests/check_content_parser.c
+++ b/tests/check_content_parser.c
@@ -1153,7 +1153,7 @@ test_content_parse_description(void **state)
"</blockquote>\n"
"<p>bar</p>\n");
assert_non_null(d);
- assert_string_equal(d, "qwe");
+ assert_string_equal(d, "bar");
free(html);
free(d);
d = NULL;
@@ -1172,7 +1172,7 @@ test_content_parse_description(void **state)
"</blockquote>\n"
"<p>bar</p>\n");
assert_non_null(d);
- assert_string_equal(d, "qwe");
+ assert_string_equal(d, "bar");
free(html);
free(d);
}
@@ -1236,7 +1236,7 @@ test_content_parse_description_crlf(void **state)
"</blockquote>\r\n"
"<p>bar</p>\r\n");
assert_non_null(d);
- assert_string_equal(d, "qwe");
+ assert_string_equal(d, "bar");
free(html);
free(d);
d = NULL;
@@ -1255,7 +1255,7 @@ test_content_parse_description_crlf(void **state)
"</blockquote>\r\n"
"<p>bar</p>\r\n");
assert_non_null(d);
- assert_string_equal(d, "qwe");
+ assert_string_equal(d, "bar");
free(html);
free(d);
}