diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-14 10:35:37 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-14 10:35:37 -0600 |
commit | e7fac4f893274098f153683a70a57da9f930428b (patch) | |
tree | 22c476a41fd625a26315a76a7535669f78a32133 /tests/hazmat/primitives | |
parent | c9f48f67da5694600c6149621e384924c836c322 (diff) | |
download | cryptography-e7fac4f893274098f153683a70a57da9f930428b.tar.gz cryptography-e7fac4f893274098f153683a70a57da9f930428b.tar.bz2 cryptography-e7fac4f893274098f153683a70a57da9f930428b.zip |
python3 compatibility is good
Diffstat (limited to 'tests/hazmat/primitives')
-rw-r--r-- | tests/hazmat/primitives/test_rsa.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hazmat/primitives/test_rsa.py b/tests/hazmat/primitives/test_rsa.py index 56ce7032..9cb015b7 100644 --- a/tests/hazmat/primitives/test_rsa.py +++ b/tests/hazmat/primitives/test_rsa.py @@ -64,7 +64,7 @@ def test_egcd(): int("e525d5ee4fe6d6142812fe12a7b531ebfaa033be349e4c3680d264f41d82008b", 16) ) - assert val[0] == 1L + assert val[0] == 1 assert val[1] == int("6caa1a8fae63ab2b8d4051101828985ef93fb0ffc14a955f93fd" "9c4a3fd8c7b1", 16) assert val[2] == int("-5b4ff48d0c09936986bc3c544f1e7dd684f8c0f09ae36a7819e" |