[pypy-commit] cffi default: Rename these two tests.

arigo noreply at buildbot.pypy.org
Sat Aug 4 16:36:25 CEST 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r772:62a399216c22
Date: 2012-08-04 16:32 +0200
http://bitbucket.org/cffi/cffi/changeset/62a399216c22/

Log:	Rename these two tests.

diff --git a/testing/test_zdistutils.py b/testing/test_zdistutils.py
--- a/testing/test_zdistutils.py
+++ b/testing/test_zdistutils.py
@@ -58,7 +58,7 @@
     mod = imp.load_dynamic(v.get_module_name(), v.modulefilename)
     assert hasattr(mod, '_cffi_setup')
 
-def test_name_from_md5_of_cdef():
+def test_name_from_checksum_of_cdef():
     names = []
     for csrc in ['double', 'double', 'float']:
         ffi = FFI()
@@ -67,7 +67,7 @@
         names.append(v.get_module_name())
     assert names[0] == names[1] != names[2]
 
-def test_name_from_md5_of_csrc():
+def test_name_from_checksum_of_csrc():
     names = []
     for csrc in ['123', '123', '1234']:
         ffi = FFI()


More information about the pypy-commit mailing list