async: remove AsyncWriter

we are not expecting real-time problems on the sender's side.
This commit is contained in:
Roman Zeyde
2015-02-04 18:07:25 +02:00
parent 1b64e2874a
commit 6a35820155
4 changed files with 2 additions and 90 deletions

View File

@@ -70,11 +70,6 @@ def test_small(small_size):
run(small_size, chan=lambda x: x)
def test_async():
run(1024, chan=lambda x: x,
reader=lambda s: async.AsyncReader(s, 128))
def test_error():
skip = 32000 # remove trailing silence
run(1024, chan=lambda x: x[:-skip], success=False)