From 4d108a6bcf3e529b61141026029034cc61a9f1de Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Fri, 16 Jan 2015 17:36:47 +0100 Subject: tests: Remove unused function; inline another function --- tests/test_streams.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/tests/test_streams.py b/tests/test_streams.py index a18603a..2273049 100644 --- a/tests/test_streams.py +++ b/tests/test_streams.py @@ -415,10 +415,6 @@ class StreamReaderTests(test_utils.TestCase): def set_err(): stream.set_exception(ValueError()) - @asyncio.coroutine - def readline(): - yield from stream.readline() - t1 = asyncio.Task(stream.readline(), loop=self.loop) t2 = asyncio.Task(set_err(), loop=self.loop) @@ -429,11 +425,7 @@ class StreamReaderTests(test_utils.TestCase): def test_exception_cancel(self): stream = asyncio.StreamReader(loop=self.loop) - @asyncio.coroutine - def read_a_line(): - yield from stream.readline() - - t = asyncio.Task(read_a_line(), loop=self.loop) + t = asyncio.Task(stream.readline(), loop=self.loop) test_utils.run_briefly(self.loop) t.cancel() test_utils.run_briefly(self.loop) -- cgit v1.2.1