Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2013-01-01 22:36:56 +0400
committerYann Leboulanger <asterix@lagaule.org>2013-01-01 22:36:56 +0400
commite71188a6fa664866d04c0b0af4426d106400c5b1 (patch)
treee6593c0614c15a5814220b5a768f321ad1869d56 /test/integration
parentf67f0637690b13ba897cecaec37d73b2ca6ed276 (diff)
print -> print()
Diffstat (limited to 'test/integration')
-rw-r--r--test/integration/test_resolver.py2
-rw-r--r--test/integration/test_xmpp_client_nb.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/integration/test_resolver.py b/test/integration/test_resolver.py
index d80ffee87..2de36d8e8 100644
--- a/test/integration/test_resolver.py
+++ b/test/integration/test_resolver.py
@@ -46,7 +46,7 @@ class TestResolver(unittest.TestCase):
def testLibAsyncNSResolver(self):
self._reset()
if not resolver.USE_LIBASYNCNS:
- print 'testLibAsyncResolver: libasyncns-python not installed'
+ print('testLibAsyncResolver: libasyncns-python not installed')
return
self.resolver = resolver.LibAsyncNSResolver()
diff --git a/test/integration/test_xmpp_client_nb.py b/test/integration/test_xmpp_client_nb.py
index 971f321de..3159552ba 100644
--- a/test/integration/test_xmpp_client_nb.py
+++ b/test/integration/test_xmpp_client_nb.py
@@ -132,7 +132,7 @@ class TestNonBlockingClient(unittest.TestCase):
self.assert_(self.connection.con)
features = self.client.Dispatcher.Stream.features
if not features.getTag('auth'):
- print "Server doesn't support old authentication type, ignoring test"
+ print("Server doesn't support old authentication type, ignoring test")
else:
self.assert_(self.connection.auth=='old_auth',
msg='Unable to auth via old_auth')