diff options
author | Lance Stout <lancestout@gmail.com> | 2010-10-07 09:22:27 -0400 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2010-10-07 09:22:27 -0400 |
commit | 75a051556f2cf65f75534102a7fe57a52571494a (patch) | |
tree | 7b0205c55b16bde132eb9d7443bb9c56f1dde5da /tests/test_roster.py | |
parent | 78141fe5f3d3e8267b6969690b93dd7aba41cf65 (diff) | |
download | slixmpp-75a051556f2cf65f75534102a7fe57a52571494a.tar.gz slixmpp-75a051556f2cf65f75534102a7fe57a52571494a.tar.bz2 slixmpp-75a051556f2cf65f75534102a7fe57a52571494a.tar.xz slixmpp-75a051556f2cf65f75534102a7fe57a52571494a.zip |
Changed SleekTest to use underscored names.
Diffstat (limited to 'tests/test_roster.py')
-rw-r--r-- | tests/test_roster.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_roster.py b/tests/test_roster.py index 6f9fa3d6..f210551d 100644 --- a/tests/test_roster.py +++ b/tests/test_roster.py @@ -16,7 +16,7 @@ class TestRosterStanzas(SleekTest): 'name': 'Other User', 'subscription': 'both', 'groups': []}}) - self.checkIq(iq, """ + self.check_iq(iq, """ <iq> <query xmlns="jabber:iq:roster"> <item jid="user@example.com" name="User" subscription="both"> @@ -74,7 +74,7 @@ class TestRosterStanzas(SleekTest): """ iq = self.Iq(ET.fromstring(xml_string)) del iq['roster']['items'] - self.checkIq(iq, """ + self.check_iq(iq, """ <iq> <query xmlns="jabber:iq:roster" /> </iq> |