diff options
Diffstat (limited to 'test/git/async/test_channel.py')
-rw-r--r-- | test/git/async/test_channel.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/git/async/test_channel.py b/test/git/async/test_channel.py index 2a3c1585..6472b5b5 100644 --- a/test/git/async/test_channel.py +++ b/test/git/async/test_channel.py @@ -26,7 +26,7 @@ class TestChannels(TestBase): assert rc.read(timeout=1) == [item, item2] assert time.time() - st >= 1.0 - # next read blocks, then raises - it waits a second + # next read blocks. it waits a second st = time.time() assert len(rc.read(1, True, 1)) == 0 assert time.time() - st >= 1.0 |