Skip to content

Commit

Permalink
tests: fix linter warning
Browse files Browse the repository at this point in the history
  • Loading branch information
facutuesca committed Sep 7, 2023
1 parent 1f5ee07 commit c96f4b8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/x509/test_verification.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ def test_dnsname_subject(self):
assert policy.subject == DNSName("cryptography.io")

def test_subject_bad_types(self):
# Subject must be none or a GeneralName type; nothing else is supported.
# Subject must be none or a GeneralName type; nothing else is
# supported.
with pytest.raises(TypeError):
PolicyBuilder(subject="cryptography.io").build()
with pytest.raises(TypeError):
Expand Down

0 comments on commit c96f4b8

Please sign in to comment.