diff options
author | mathieui <mathieui@mathieui.net> | 2021-07-04 16:01:48 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2021-07-04 16:01:48 +0200 |
commit | ea7f7d81195152da50725ca0d80ebe8bdeb6a741 (patch) | |
tree | 671e9fc6c77b579f6419010f7da684b18264123a | |
parent | 3516016f327b18abcdbce9594694f6cea290f1ab (diff) | |
download | slixmpp-ea7f7d81195152da50725ca0d80ebe8bdeb6a741.tar.gz slixmpp-ea7f7d81195152da50725ca0d80ebe8bdeb6a741.tar.bz2 slixmpp-ea7f7d81195152da50725ca0d80ebe8bdeb6a741.tar.xz slixmpp-ea7f7d81195152da50725ca0d80ebe8bdeb6a741.zip |
fix: remove asyncio hack in slixtest
-rw-r--r-- | slixmpp/test/slixtest.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/slixmpp/test/slixtest.py b/slixmpp/test/slixtest.py index 7c700fd2..0d05a4ac 100644 --- a/slixmpp/test/slixtest.py +++ b/slixmpp/test/slixtest.py @@ -17,9 +17,7 @@ from slixmpp.xmlstream.matcher import StanzaPath, MatcherId, MatchIDSender from slixmpp.xmlstream.matcher import MatchXMLMask, MatchXPath import asyncio -cls = asyncio.get_event_loop().__class__ -cls.idle_call = lambda self, callback: callback() class SlixTest(unittest.TestCase): |