From f0dde60a20bbbf750f6833c624c0c5bf20c7ac9c Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Fri, 24 Oct 2014 14:05:10 -0700 Subject: Update test for new API --- tests/hazmat/bindings/test_utils.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests') 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" -- cgit v1.2.3