diff options
Diffstat (limited to 'tests/test_stream_xep_0050.py')
-rw-r--r-- | tests/test_stream_xep_0050.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test_stream_xep_0050.py b/tests/test_stream_xep_0050.py index d1a94ecc..37cd233d 100644 --- a/tests/test_stream_xep_0050.py +++ b/tests/test_stream_xep_0050.py @@ -626,7 +626,7 @@ class TestAdHocCommands(SlixTest): </iq> """) - self.failUnless(results == ['foo', 'bar', 'baz'], + self.assertTrue(results == ['foo', 'bar', 'baz'], 'Incomplete command workflow: %s' % results) def testClientAPICancel(self): @@ -689,7 +689,7 @@ class TestAdHocCommands(SlixTest): </iq> """) - self.failUnless(results == ['foo', 'bar'], + self.assertTrue(results == ['foo', 'bar'], 'Incomplete command workflow: %s' % results) def testClientAPIError(self): @@ -727,7 +727,7 @@ class TestAdHocCommands(SlixTest): </iq> """) - self.failUnless(results == ['foo'], + self.assertTrue(results == ['foo'], 'Incomplete command workflow: %s' % results) def testClientAPIErrorStrippedResponse(self): @@ -762,7 +762,7 @@ class TestAdHocCommands(SlixTest): </iq> """) - self.failUnless(results == ['foo'], + self.assertTrue(results == ['foo'], 'Incomplete command workflow: %s' % results) |