diff options
author | Lance Stout <lancestout@gmail.com> | 2011-07-03 00:39:14 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2011-07-03 00:39:14 -0700 |
commit | 20df6348a4c8262a40578d84c934f9a15431d925 (patch) | |
tree | c6dc62a271c0125bf623a2376cc64c08e00ae7ad /tests/test_stream_xep_0030.py | |
parent | 847510c6b577f889cdba5deaa0bb271475cc7c7f (diff) | |
parent | 086bf89d699c88ab89ad1e1975d6022335ca5c04 (diff) | |
download | slixmpp-20df6348a4c8262a40578d84c934f9a15431d925.tar.gz slixmpp-20df6348a4c8262a40578d84c934f9a15431d925.tar.bz2 slixmpp-20df6348a4c8262a40578d84c934f9a15431d925.tar.xz slixmpp-20df6348a4c8262a40578d84c934f9a15431d925.zip |
Merge branch 'develop' into exceptions
Diffstat (limited to 'tests/test_stream_xep_0030.py')
-rw-r--r-- | tests/test_stream_xep_0030.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/test_stream_xep_0030.py b/tests/test_stream_xep_0030.py index c960fc7a..1666d3a1 100644 --- a/tests/test_stream_xep_0030.py +++ b/tests/test_stream_xep_0030.py @@ -12,7 +12,6 @@ class TestStreamDisco(SleekTest): """ def tearDown(self): - sys.excepthook = sys.__excepthook__ self.stream_close() def testInfoEmptyDefaultNode(self): @@ -531,11 +530,6 @@ class TestStreamDisco(SleekTest): raised_exceptions = [] - def catch_exception(*args, **kwargs): - raised_exceptions.append(True) - - sys.excepthook = catch_exception - self.stream_start(mode='client', plugins=['xep_0030', 'xep_0059']) @@ -544,8 +538,14 @@ class TestStreamDisco(SleekTest): iterator=True) results.amount = 10 + def run_test(): + try: + results.next() + except StopIteration: + raised_exceptions.append(True) + t = threading.Thread(name="get_items_iterator", - target=results.next) + target=run_test) t.start() self.send(""" |