[pypy-commit] pypy default: give test a meaningful name

rlamy pypy.commits at gmail.com
Thu Sep 26 10:57:07 EDT 2019


Author: Ronan Lamy <ronan.lamy at gmail.com>
Branch: 
Changeset: r97619:6deb34eb72c8
Date: 2019-09-26 15:50 +0100
http://bitbucket.org/pypy/pypy/changeset/6deb34eb72c8/

Log:	give test a meaningful name

diff --git a/pypy/module/_multiprocessing/test/test_interp_semaphore.py b/pypy/module/_multiprocessing/test/test_interp_semaphore.py
--- a/pypy/module/_multiprocessing/test/test_interp_semaphore.py
+++ b/pypy/module/_multiprocessing/test/test_interp_semaphore.py
@@ -10,7 +10,7 @@
 
 @pytest.mark.parametrize('spaceconfig', [
     {'usemodules': ['_multiprocessing', 'thread']}])
-def test_stuff(space):
+def test_semlock_release(space):
     sem_name = '/test7'
     _handle = create_semaphore(space, sem_name, 1, 1)
     w_lock = W_SemLock(space, _handle, 0, 1)


More information about the pypy-commit mailing list