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
path: root/test/lib
diff options
context:
space:
mode:
authorStephan Erb <steve-e@h3c.de>2009-11-16 01:52:43 +0300
committerStephan Erb <steve-e@h3c.de>2009-11-16 01:52:43 +0300
commita3ea00f4ea349b51b172a9f187842e3a3b6d4f4c (patch)
tree8ce2800627a08265fbe70f7be976aa258c6ffd9e /test/lib
parentaa53988fd18d1f7f2b8d58bd5dd88c895c40331d (diff)
Remove different dicts for tune, activity and mood and from now on only use the common 'pep' dict.
The pep dict contacts the different UserPEP classes.
Diffstat (limited to 'test/lib')
-rw-r--r--test/lib/gajim_mocks.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/lib/gajim_mocks.py b/test/lib/gajim_mocks.py
index d45e488e6..9607a77c9 100644
--- a/test/lib/gajim_mocks.py
+++ b/test/lib/gajim_mocks.py
@@ -14,9 +14,7 @@ class MockConnection(Mock, ConnectionHandlersBase):
self.name = account
self.connected = 2
- self.mood = {}
- self.activity = {}
- self.tune = {}
+ self.pep = {}
self.blocked_contacts = {}
self.blocked_groups = {}
self.sessions = {}