diff options
author | Nguyễn Gia Phong <cnx@loang.net> | 2025-05-26 23:17:58 +0900 |
---|---|---|
committer | Nguyễn Gia Phong <cnx@loang.net> | 2025-05-26 23:17:58 +0900 |
commit | 053b6da35753267456a167bfa84b955781b7d986 (patch) | |
tree | 0551099003a43918ae523c907b89f05137f76f4c /tst/test_listen.py | |
parent | 56a032568443bdf85dd37df5f6716b3475626d6a (diff) | |
download | scadere-053b6da35753267456a167bfa84b955781b7d986.tar.gz |
Stop treating empty CA name specially
Diffstat (limited to 'tst/test_listen.py')
-rw-r--r-- | tst/test_listen.py | 2 |
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}' |