summaryrefslogtreecommitdiff
path: root/test/git/async/test_task.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2010-06-11 16:58:44 +0200
committerSebastian Thiel <byronimo@gmail.com>2010-06-11 16:58:44 +0200
commitcac6e06cc9ef2903a15e594186445f3baa989a1a (patch)
tree66fe86c00d11163fe4c726675ab92914d47230ef /test/git/async/test_task.py
parent29eb123beb1c55e5db4aa652d843adccbd09ae18 (diff)
downloadgitpython-cac6e06cc9ef2903a15e594186445f3baa989a1a.tar.gz
test_task: fixed import error, made all modules from x import * safe
Diffstat (limited to 'test/git/async/test_task.py')
-rw-r--r--test/git/async/test_task.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/git/async/test_task.py b/test/git/async/test_task.py
index 91ac4dc3..c6a796e9 100644
--- a/test/git/async/test_task.py
+++ b/test/git/async/test_task.py
@@ -1,5 +1,6 @@
"""Channel testing"""
from test.testlib import *
+from git.async.util import *
from git.async.task import *
import time
@@ -9,4 +10,6 @@ class TestTask(TestBase):
max_threads = cpu_count()
def test_iterator_task(self):
- self.fail("test iterator task")
+ # tested via test_pool
+ pass
+