summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2021-02-13 20:01:45 +0100
committermathieui <mathieui@mathieui.net>2021-02-13 20:23:21 +0100
commitbbcc977d1d87b564f766cf973de078884d3be845 (patch)
treede932679a63d2d377842d579fe5d48696c23013b /tests
parent3668e79fbc5fb0cadc98e965c45b284145c8d207 (diff)
downloadslixmpp-bbcc977d1d87b564f766cf973de078884d3be845.tar.gz
slixmpp-bbcc977d1d87b564f766cf973de078884d3be845.tar.bz2
slixmpp-bbcc977d1d87b564f766cf973de078884d3be845.tar.xz
slixmpp-bbcc977d1d87b564f766cf973de078884d3be845.zip
tests: update 0047 tests to reflect new API
Diffstat (limited to 'tests')
-rw-r--r--tests/test_stream_xep_0047.py14
1 files 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("""
<iq type="set" to="tester@localhost/receiver" id="1">
@@ -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("""
<iq type="set" to="tester@localhost/receiver" id="1">