diff options
author | Lance Stout <lancestout@gmail.com> | 2010-10-01 22:24:19 -0400 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2010-10-01 23:56:46 -0400 |
commit | 9f0baec7b2f531ec4c81059715c7dd622ffcd0ae (patch) | |
tree | 1aea3cfc74cdd7cac14d6760f9eda4d392458e84 /tests | |
parent | 433c1476270973812dad0ba89911630bd1df2ea1 (diff) | |
download | slixmpp-9f0baec7b2f531ec4c81059715c7dd622ffcd0ae.tar.gz slixmpp-9f0baec7b2f531ec4c81059715c7dd622ffcd0ae.tar.bz2 slixmpp-9f0baec7b2f531ec4c81059715c7dd622ffcd0ae.tar.xz slixmpp-9f0baec7b2f531ec4c81059715c7dd622ffcd0ae.zip |
Made first pass at cleaning BaseXMPP.
Have not intregrated the new JID class yet.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_presencestanzas.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_presencestanzas.py b/tests/test_presencestanzas.py index d6a5a388..f4a33aa7 100644 --- a/tests/test_presencestanzas.py +++ b/tests/test_presencestanzas.py @@ -46,7 +46,7 @@ class TestPresenceStanzas(SleekTest): happened.append(True) c.add_event_handler("changed_status", handlechangedpresence) - c._handlePresence(p) + c._handle_presence(p) self.failUnless(happened == [], "changed_status event triggered for extra unavailable presence") |