summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/core/test_backgrounding.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/core/test_backgrounding.py b/tests/core/test_backgrounding.py
index 7436099..55c4ba7 100644
--- a/tests/core/test_backgrounding.py
+++ b/tests/core/test_backgrounding.py
@@ -3,11 +3,11 @@ import threading
import dogpile.core
-class TestBackgroundRunner(unittest.TestCase):
- def test_background_release(self):
+class TestAsyncRunner(unittest.TestCase):
+ def test_async_release(self):
self.called = False
- def runner(mutex, creator):
+ def runner(mutex):
self.called = True
mutex.release()