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:
Diffstat (limited to 'test/lib/mocks.py')
-rw-r--r--test/lib/mocks.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lib/mocks.py b/test/lib/mocks.py
index 8d0e80f96..a58d24de8 100644
--- a/test/lib/mocks.py
+++ b/test/lib/mocks.py
@@ -122,12 +122,12 @@ class MockContact(Mock):
import random
class MockSession(Mock):
- def __init__(self, conn, jid, thread_id, type):
+ def __init__(self, conn, jid, thread_id, type_):
Mock.__init__(self)
self.conn = conn
self.jid = jid
- self.type = type
+ self.type = type_
self.thread_id = thread_id
if not self.thread_id: