diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-10-25 13:41:26 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-10-25 13:41:26 -0700 |
commit | 1b8c0b31816762d025356fc77f10db71533ac98e (patch) | |
tree | 4a677936196a32af76114876d1471e5dc3d84143 /tests/hazmat/bindings/test_utils.py | |
parent | f484d1ef03bc548dde300a59c91474d82169b1be (diff) | |
parent | daca59235c6be9ae11044aa8bb14e137c0435dd2 (diff) | |
download | cryptography-1b8c0b31816762d025356fc77f10db71533ac98e.tar.gz cryptography-1b8c0b31816762d025356fc77f10db71533ac98e.tar.bz2 cryptography-1b8c0b31816762d025356fc77f10db71533ac98e.zip |
Merge branch 'master' into verify-interfaces
Diffstat (limited to 'tests/hazmat/bindings/test_utils.py')
-rw-r--r-- | tests/hazmat/bindings/test_utils.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/hazmat/bindings/test_utils.py b/tests/hazmat/bindings/test_utils.py index 0d5b34de..3596cd1d 100644 --- a/tests/hazmat/bindings/test_utils.py +++ b/tests/hazmat/bindings/test_utils.py @@ -17,9 +17,9 @@ from cryptography.hazmat.bindings import utils def test_create_modulename(): - cdef_sources = ["cdef sources go here"] + cdef_source = "cdef sources go here" source = "source code" - name = utils._create_modulename(cdef_sources, source, "2.7") + name = utils._create_modulename(cdef_source, source, "2.7") assert name == "_Cryptography_cffi_bcba7f4bx4a14b588" - name = utils._create_modulename(cdef_sources, source, "3.2") + name = utils._create_modulename(cdef_source, source, "3.2") assert name == "_Cryptography_cffi_a7462526x4a14b588" |