From bbcc977d1d87b564f766cf973de078884d3be845 Mon Sep 17 00:00:00 2001 From: mathieui Date: Sat, 13 Feb 2021 20:01:45 +0100 Subject: [PATCH] tests: update 0047 tests to reflect new API --- tests/test_stream_xep_0047.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/test_stream_xep_0047.py b/tests/test_stream_xep_0047.py index f7276c0f..53225df5 100644 --- a/tests/test_stream_xep_0047.py +++ b/tests/test_stream_xep_0047.py @@ -14,7 +14,7 @@ class TestInBandByteStreams(SlixTest): def tearDown(self): self.stream_close() - def testOpenStream(self): + async def testOpenStream(self): """Test requesting a stream, successfully""" events = [] @@ -25,8 +25,8 @@ class TestInBandByteStreams(SlixTest): self.xmpp.add_event_handler('ibb_stream_start', on_stream_start) - self.xmpp['xep_0047'].open_stream('tester@localhost/receiver', - sid='testing') + await self.xmpp['xep_0047'].open_stream('tester@localhost/receiver', + sid='testing') self.send(""" @@ -45,7 +45,7 @@ class TestInBandByteStreams(SlixTest): self.assertEqual(events, ['ibb_stream_start']) - def testAysncOpenStream(self): + async def testAysncOpenStream(self): """Test requesting a stream, aysnc""" events = set() @@ -58,9 +58,9 @@ class TestInBandByteStreams(SlixTest): self.xmpp.add_event_handler('ibb_stream_start', on_stream_start) - self.xmpp['xep_0047'].open_stream('tester@localhost/receiver', - sid='testing', - callback=stream_callback) + await self.xmpp['xep_0047'].open_stream('tester@localhost/receiver', + sid='testing', + callback=stream_callback) self.send("""