From cf924373f6bcef9ee0e9bde05eccd08694e6d609 Mon Sep 17 00:00:00 2001 From: Victor Shyba Date: Wed, 7 Aug 2019 11:27:25 -0300 Subject: [PATCH] make stream test an asyncio test --- torba/tests/client_tests/unit/test_stream_controller.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/torba/tests/client_tests/unit/test_stream_controller.py b/torba/tests/client_tests/unit/test_stream_controller.py index f82ab699f..70c20fd3a 100644 --- a/torba/tests/client_tests/unit/test_stream_controller.py +++ b/torba/tests/client_tests/unit/test_stream_controller.py @@ -1,7 +1,8 @@ -import unittest from torba.stream import StreamController +from torba.testcase import AsyncioTestCase -class StreamControllerTestCase(unittest.TestCase): + +class StreamControllerTestCase(AsyncioTestCase): def test_non_unique_events(self): events = [] controller = StreamController()