aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDavid Reid <dreid@dreid.org>2014-05-01 12:57:35 -0700
committerDavid Reid <dreid@dreid.org>2014-05-01 12:57:35 -0700
commit6994ff0da7076ab161c91bfa5df09290faf1cec4 (patch)
tree3def8b1e5ab1cd3c46ef1abac79f630e049d3948 /tests
parentb0f2b674640ee126d0cc63849f77c4ea480d67fd (diff)
downloadcryptography-6994ff0da7076ab161c91bfa5df09290faf1cec4.tar.gz
cryptography-6994ff0da7076ab161c91bfa5df09290faf1cec4.tar.bz2
cryptography-6994ff0da7076ab161c91bfa5df09290faf1cec4.zip
Make public_numbers a property.
Diffstat (limited to 'tests')
-rw-r--r--tests/hazmat/primitives/test_rsa.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hazmat/primitives/test_rsa.py b/tests/hazmat/primitives/test_rsa.py
index e60bfabf..6d3bf2ec 100644
--- a/tests/hazmat/primitives/test_rsa.py
+++ b/tests/hazmat/primitives/test_rsa.py
@@ -1509,4 +1509,4 @@ class TestRSANumbers(object):
assert private_numbers.dmp1 == 1
assert private_numbers.dmq1 == 1
assert private_numbers.iqmp == 2
- assert private_numbers.public_numbers() == public_numbers
+ assert private_numbers.public_numbers == public_numbers