From 90061f7e22e35319590c1c491c0525cd1dc06ad4 Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Thu, 10 Jan 2013 17:19:12 -0500 Subject: Update async/background unit test to reflect evolution of the pull request. --- tests/core/test_backgrounding.py | 6 +++--- 1 file 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() -- cgit v1.2.1