summaryrefslogtreecommitdiff
path: root/test/git/async/test_channel.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2010-06-11 14:59:02 +0200
committerSebastian Thiel <byronimo@gmail.com>2010-06-11 14:59:02 +0200
commitf606937a7a21237c866efafcad33675e6539c103 (patch)
tree13ba7731de4798b2c9bfa24ccc893e4d8e5b8e8d /test/git/async/test_channel.py
parent257a8a9441fca9a9bc384f673ba86ef5c3f1715d (diff)
parent18e3252a1f655f09093a4cffd5125342a8f94f3b (diff)
downloadgitpython-f606937a7a21237c866efafcad33675e6539c103.tar.gz
Merge branch 'taskdep' into async
Diffstat (limited to 'test/git/async/test_channel.py')
-rw-r--r--test/git/async/test_channel.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/git/async/test_channel.py b/test/git/async/test_channel.py
index 215081cd..a24c7c91 100644
--- a/test/git/async/test_channel.py
+++ b/test/git/async/test_channel.py
@@ -9,8 +9,8 @@ class TestChannels(TestBase):
def test_base(self):
# creating channel yields a write and a read channal
wc, rc = mkchannel()
- assert isinstance(wc, WChannel) # default args
- assert isinstance(rc, RChannel)
+ assert isinstance(wc, Writer) # default args
+ assert isinstance(rc, Reader)
# TEST UNLIMITED SIZE CHANNEL - writing+reading is FIFO
@@ -46,7 +46,7 @@ class TestChannels(TestBase):
# test callback channels
- wc, rc = mkchannel(wctype = CallbackWChannel, rctype = CallbackRChannel)
+ wc, rc = mkchannel(wtype = CallbackWriter, rtype = CallbackReader)
cb = [0, 0] # set slots to one if called
def pre_write(item):