about summary refs log tree commit diff
path: root/tst/test_listen.py
diff options
context:
space:
mode:
Diffstat (limited to 'tst/test_listen.py')
-rw-r--r--tst/test_listen.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/tst/test_listen.py b/tst/test_listen.py
index 49b9dd8..cf47ab7 100644
--- a/tst/test_listen.py
+++ b/tst/test_listen.py
@@ -221,12 +221,13 @@ def unique_netlocs(summaries):
 
 
 @given(urls().filter(is_base_url).filter(has_usual_path),
-       sets(certificates(), min_size=1).map(unique_netlocs))
+       sets(certificates(), min_size=1).map(unique_netlocs),
+       text().filter(printable))
 @settings(suppress_health_check=[HealthCheck.too_slow])
-async def test_content(base_url, certs):
+async def test_content(base_url, certs, title):
     base_path = urlsplit(base_url).path
     with tmp_cert_file(certs) as cert_file:
-        handler = partial(handle, cert_file, base_url)
+        handler = partial(handle, cert_file, base_url, title=title)
         await check_server(handler, check_feed, base_path)