Skip to content

Commit

Permalink
don't assign unused name (#11310)
Browse files Browse the repository at this point in the history
  • Loading branch information
alex committed Jul 20, 2024
1 parent ccc66e6 commit 2dbdfb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/hazmat/primitives/test_pkcs7.py
Original file line number Diff line number Diff line change
Expand Up @@ -1054,7 +1054,7 @@ def test_smime_encrypt_pem_encoding(self, backend, options):

def test_smime_encrypt_multiple_recipients(self, backend):
data = b"hello world\n"
cert, private_key = _load_rsa_cert_key()
cert, _ = _load_rsa_cert_key()
builder = (
pkcs7.PKCS7EnvelopeBuilder()
.set_data(data)
Expand Down

0 comments on commit 2dbdfb8

Please sign in to comment.