about summary refs log tree commit diff
path: root/tst/test_listen.py
diff options
context:
space:
mode:
authorNguyễn Gia Phong <cnx@loang.net>2025-05-26 23:17:58 +0900
committerNguyễn Gia Phong <cnx@loang.net>2025-05-26 23:17:58 +0900
commit053b6da35753267456a167bfa84b955781b7d986 (patch)
tree0551099003a43918ae523c907b89f05137f76f4c /tst/test_listen.py
parent56a032568443bdf85dd37df5f6716b3475626d6a (diff)
downloadscadere-053b6da35753267456a167bfa84b955781b7d986.tar.gz
Stop treating empty CA name specially
Diffstat (limited to 'tst/test_listen.py')
-rw-r--r--tst/test_listen.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tst/test_listen.py b/tst/test_listen.py
index f35ce82..8004380 100644
--- a/tst/test_listen.py
+++ b/tst/test_listen.py
@@ -118,7 +118,7 @@ def certificates(draw):
     hostname = draw(domains())
     port = draw(ports())
     serial = draw(serials())
-    issuer = draw(ca_names()) or '\0'
+    issuer = draw(ca_names())
     return f'{not_before} {not_after} {hostname} {port} {serial} {issuer}'