diff options
Diffstat (limited to 'tests/hazmat')
| -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" | 
