diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2016-06-02 22:24:22 -0700 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2016-06-02 22:24:22 -0700 |
commit | 0c11d0427e12557fa41cdfbc00f6a83a36c58af7 (patch) | |
tree | 502887b370573178237afb3c4a246654e2457c8b /tests/hazmat/primitives | |
parent | e295f3ab615775c3549b7bc2e051af5cff801619 (diff) | |
download | cryptography-0c11d0427e12557fa41cdfbc00f6a83a36c58af7.tar.gz cryptography-0c11d0427e12557fa41cdfbc00f6a83a36c58af7.tar.bz2 cryptography-0c11d0427e12557fa41cdfbc00f6a83a36c58af7.zip |
Random grammar stuff (#2955)
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 2331a935..6a8bb95d 100644 --- a/tests/hazmat/primitives/test_rsa.py +++ b/tests/hazmat/primitives/test_rsa.py @@ -1845,7 +1845,7 @@ class TestRSAPrimeFactorRecovery(object): ) # Unfortunately there is no convention on which prime should be p # and which one q. The function we use always makes p < q, but the - # NIST vectors are not so consistent. Accordingly we verify we've + # NIST vectors are not so consistent. Accordingly, we verify we've # recovered the proper (p, q) by sorting them and asserting on that. assert sorted([p, q]) == sorted([private["p"], private["q"]]) |