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
diff options
context:
space:
mode:
authorlovetox <philipp@hoerist.com>2020-07-31 14:18:55 +0300
committerlovetox <philipp@hoerist.com>2020-08-25 14:54:01 +0300
commitc5982e06769dfdf3ecd77ae849e43d17831bc35e (patch)
tree60ed5dc6ea3cb187cf14a38c13e5b141bc3f5cce /test
parent3e94becc3eaa7c80acb694a2abf928139f2a2c62 (diff)
Migrate app.config.get_per('accounts')
Diffstat (limited to 'test')
-rw-r--r--test/lib/gajim_mocks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lib/gajim_mocks.py b/test/lib/gajim_mocks.py
index 0b25fa021..fb6a26c7a 100644
--- a/test/lib/gajim_mocks.py
+++ b/test/lib/gajim_mocks.py
@@ -32,7 +32,7 @@ class MockConnection(Mock, ConnectionHandlers):
app.automatic_rooms[account] = {}
app.newly_added[account] = []
app.to_be_removed[account] = []
- app.nicks[account] = app.config.get_per('accounts', account, 'name')
+ app.nicks[account] = app.settings.get_account_setting(account, 'name')
app.block_signed_in_notifications[account] = True
app.last_message_time[account] = {}