From 75a051556f2cf65f75534102a7fe57a52571494a Mon Sep 17 00:00:00 2001 From: Lance Stout Date: Thu, 7 Oct 2010 09:22:27 -0400 Subject: Changed SleekTest to use underscored names. --- tests/test_disco.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'tests/test_disco.py') diff --git a/tests/test_disco.py b/tests/test_disco.py index 2cc50ee0..f65fdaf4 100644 --- a/tests/test_disco.py +++ b/tests/test_disco.py @@ -14,7 +14,7 @@ class TestDisco(SleekTest): iq['id'] = "0" iq['disco_info']['node'] = '' - self.checkIq(iq, """ + self.check_iq(iq, """ @@ -26,7 +26,7 @@ class TestDisco(SleekTest): iq['id'] = "0" iq['disco_info']['node'] = 'foo' - self.checkIq(iq, """ + self.check_iq(iq, """ @@ -38,7 +38,7 @@ class TestDisco(SleekTest): iq['id'] = "0" iq['disco_items']['node'] = '' - self.checkIq(iq, """ + self.check_iq(iq, """ @@ -50,7 +50,7 @@ class TestDisco(SleekTest): iq['id'] = "0" iq['disco_items']['node'] = 'foo' - self.checkIq(iq, """ + self.check_iq(iq, """ @@ -63,7 +63,7 @@ class TestDisco(SleekTest): iq['disco_info']['node'] = 'foo' iq['disco_info'].addIdentity('conference', 'text', 'Chatroom') - self.checkIq(iq, """ + self.check_iq(iq, """ @@ -79,7 +79,7 @@ class TestDisco(SleekTest): iq['disco_info'].addFeature('foo') iq['disco_info'].addFeature('bar') - self.checkIq(iq, """ + self.check_iq(iq, """ @@ -97,7 +97,7 @@ class TestDisco(SleekTest): iq['disco_items'].addItem('user@localhost', 'foo') iq['disco_items'].addItem('user@localhost', 'bar', 'Testing') - self.checkIq(iq, """ + self.check_iq(iq, """ -- cgit v1.2.3