make stream test an asyncio test

This commit is contained in:
Victor Shyba 2019-08-07 11:27:25 -03:00
parent d1f5b25418
commit cf924373f6

View file

@ -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()