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:44:25 +0400
committerYann Leboulanger <asterix@lagaule.org>2013-01-01 22:44:25 +0400
commit414e3493453630eaf69abb69f1bddd578a9461e1 (patch)
treebbd9e6500662cf1c2a604bd5942d16bfad6d042a /test/integration
parente71188a6fa664866d04c0b0af4426d106400c5b1 (diff)
python uses unicode internally
Diffstat (limited to 'test/integration')
-rw-r--r--test/integration/test_roster.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/integration/test_roster.py b/test/integration/test_roster.py
index 43f40ed76..5b81f5824 100644
--- a/test/integration/test_roster.py
+++ b/test/integration/test_roster.py
@@ -186,13 +186,13 @@ class TestRosterWindowMetaContacts(TestRosterWindowRegrouped):
def test_connect_new_metacontact(self):
self.test_fill_roster_model()
- jid = u'coolstuff@gajim.org'
+ jid = 'coolstuff@gajim.org'
contact = gajim.contacts.create_contact(jid, account1)
gajim.contacts.add_contact(account1, contact)
self.roster.add_contact(jid, account1)
self.roster.chg_contact_status(contact, 'offline', '', account1)
- gajim.contacts.add_metacontact(account1, u'samejid@gajim.org',
+ gajim.contacts.add_metacontact(account1, 'samejid@gajim.org',
account1, jid)
self.roster.chg_contact_status(contact, 'online', '', account1)