diff options
Diffstat (limited to 'tests/test_stream_xep_0066.py')
-rw-r--r-- | tests/test_stream_xep_0066.py | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/tests/test_stream_xep_0066.py b/tests/test_stream_xep_0066.py index a9f2bc65..159333c7 100644 --- a/tests/test_stream_xep_0066.py +++ b/tests/test_stream_xep_0066.py @@ -15,13 +15,8 @@ class TestOOB(SlixTest): url = 'http://github.com/fritzy/Slixmpp/blob/master/README' - t = threading.Thread( - name='send_oob', - target=self.xmpp['xep_0066'].send_oob, - args=('user@example.com', url), - kwargs={'desc': 'Slixmpp README'}) - - t.start() + self.xmpp['xep_0066'].send_oob('user@example.com', url, + desc='Slixmpp README') self.send(""" <iq to="user@example.com" type="set" id="1"> @@ -38,7 +33,5 @@ class TestOOB(SlixTest): from="user@example.com" /> """) - t.join() - suite = unittest.TestLoader().loadTestsFromTestCase(TestOOB) |