diff options
Diffstat (limited to 'test/git/async/test_thread.py')
-rw-r--r-- | test/git/async/test_thread.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/git/async/test_thread.py b/test/git/async/test_thread.py index ca306cc0..2ea8d1ff 100644 --- a/test/git/async/test_thread.py +++ b/test/git/async/test_thread.py @@ -37,9 +37,7 @@ class TestThreads( TestCase ): # test different method types standalone_func = lambda *args, **kwargs: worker.fun(*args, **kwargs) for function in ("fun", TestWorker.fun, worker.fun, standalone_func): - rval = worker.call(function, 1, this='that') - assert isinstance(rval, Queue) - assert rval.get() is True + worker.call(function, 1, this='that') worker.make_assertion() # END for each function type |