summaryrefslogtreecommitdiff
path: root/test/git/async/test_performance.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2010-06-12 12:38:02 +0200
committerSebastian Thiel <byronimo@gmail.com>2010-06-12 12:40:07 +0200
commit7a0b79ee574999ecbc76696506352e4a5a0d7159 (patch)
treee0e2aa63b7dc649083858366eaedb6ac4cc5739b /test/git/async/test_performance.py
parent1d8a577ffc6ad7ce1465001ddebdc157aecc1617 (diff)
downloadgitpython-7a0b79ee574999ecbc76696506352e4a5a0d7159.tar.gz
task: improved naming of task types, improved pool test to be less dependent on starting with just the main thread
Diffstat (limited to 'test/git/async/test_performance.py')
-rw-r--r--test/git/async/test_performance.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/git/async/test_performance.py b/test/git/async/test_performance.py
index 896d230e..703c8593 100644
--- a/test/git/async/test_performance.py
+++ b/test/git/async/test_performance.py
@@ -26,8 +26,8 @@ class TestThreadPoolPerformance(TestBase):
for num_transformers in (1, 5, 10):
for read_mode in range(2):
ts, rcs = add_task_chain(pool, ni, count=num_transformers,
- feedercls=InputIteratorThreadTask,
- transformercls=TestThreadPerformanceTaskNode,
+ feedercls=IteratorThreadTask,
+ transformercls=TestPerformanceThreadTask,
include_verifier=False)
mode_info = "read(0)"