Skip to content

Commit 2dbdfb8

Browse files
authored
don't assign unused name (#11310)
1 parent ccc66e6 commit 2dbdfb8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/hazmat/primitives/test_pkcs7.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1054,7 +1054,7 @@ def test_smime_encrypt_pem_encoding(self, backend, options):
10541054

10551055
def test_smime_encrypt_multiple_recipients(self, backend):
10561056
data = b"hello world\n"
1057-
cert, private_key = _load_rsa_cert_key()
1057+
cert, _ = _load_rsa_cert_key()
10581058
builder = (
10591059
pkcs7.PKCS7EnvelopeBuilder()
10601060
.set_data(data)

0 commit comments

Comments
 (0)