aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/primitives/test_rsa.py
diff options
context:
space:
mode:
authorDavid Reid <dreid@dreid.org>2014-04-30 18:30:25 -0700
committerDavid Reid <dreid@dreid.org>2014-04-30 18:30:25 -0700
commitb0f2b674640ee126d0cc63849f77c4ea480d67fd (patch)
tree051b0129e957ff5c598941ab107e75d5211bcda1 /tests/hazmat/primitives/test_rsa.py
parent66e377aea7d4391371ff8b1b8fa0420a10bbfa08 (diff)
downloadcryptography-b0f2b674640ee126d0cc63849f77c4ea480d67fd.tar.gz
cryptography-b0f2b674640ee126d0cc63849f77c4ea480d67fd.tar.bz2
cryptography-b0f2b674640ee126d0cc63849f77c4ea480d67fd.zip
Pep8
Diffstat (limited to 'tests/hazmat/primitives/test_rsa.py')
-rw-r--r--tests/hazmat/primitives/test_rsa.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/hazmat/primitives/test_rsa.py b/tests/hazmat/primitives/test_rsa.py
index 9d696238..e60bfabf 100644
--- a/tests/hazmat/primitives/test_rsa.py
+++ b/tests/hazmat/primitives/test_rsa.py
@@ -1486,12 +1486,12 @@ class TestRSAEncryption(object):
class TestRSANumbers(object):
- def test_RSAPublicNumbers(self):
+ def test_rsa_public_numbers(self):
public_numbers = rsa.RSAPublicNumbers(e=1, n=15)
assert public_numbers.e == 1
assert public_numbers.n == 15
- def test_RSAPrivateNumbers(self):
+ def test_rsa_private_numbers(self):
public_numbers = rsa.RSAPublicNumbers(e=1, n=15)
private_numbers = rsa.RSAPrivateNumbers(
p=3,