diff options
Diffstat (limited to 'tests/test_stream_xep_0128.py')
-rw-r--r-- | tests/test_stream_xep_0128.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_stream_xep_0128.py b/tests/test_stream_xep_0128.py index 1c1da88f..e987278f 100644 --- a/tests/test_stream_xep_0128.py +++ b/tests/test_stream_xep_0128.py @@ -18,7 +18,7 @@ class TestStreamExtendedDisco(SlixTest): 'xep_0004', 'xep_0128']) - form = self.xmpp['xep_0004'].makeForm(ftype='result') + form = self.xmpp['xep_0004'].make_form(ftype='result') form.addField(var='FORM_TYPE', ftype='hidden', value='testing') info_ns = 'http://jabber.org/protocol/disco#info' @@ -57,10 +57,10 @@ class TestStreamExtendedDisco(SlixTest): 'xep_0004', 'xep_0128']) - form1 = self.xmpp['xep_0004'].makeForm(ftype='result') + form1 = self.xmpp['xep_0004'].make_form(ftype='result') form1.addField(var='FORM_TYPE', ftype='hidden', value='testing') - form2 = self.xmpp['xep_0004'].makeForm(ftype='result') + form2 = self.xmpp['xep_0004'].make_form(ftype='result') form2.addField(var='FORM_TYPE', ftype='hidden', value='testing_2') info_ns = 'http://jabber.org/protocol/disco#info' |