diff options
author | Victor Shyba <victor1984@riseup.net> | 2017-02-12 23:15:30 -0300 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2017-02-13 12:20:19 +0100 |
commit | 45c58edc99009fc0f2ac044a08a74fd742326a58 (patch) | |
tree | 2b1a0b872704cbaaeccffa876f610eb6d356fd95 /testing/tests/server | |
parent | 3fb32423b75898f4eb0812c8927dd7f06839e756 (diff) |
[tests] conf format changed, no more nesting
Diffstat (limited to 'testing/tests/server')
-rw-r--r-- | testing/tests/server/test_auth.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/tests/server/test_auth.py b/testing/tests/server/test_auth.py index c9b941f9..6eb647ee 100644 --- a/testing/tests/server/test_auth.py +++ b/testing/tests/server/test_auth.py @@ -40,7 +40,7 @@ class SoledadRealmTestCase(unittest.TestCase): def test_returned_resource(self): # we have to pass a pool to the realm , otherwise tests will hang - conf = {'soledad-server': {'blobs': False}} + conf = {'blobs': False} pool = reactor.getThreadPool() realm = SoledadRealm(conf=conf, sync_pool=pool) iface, avatar, logout = realm.requestAvatar('any', None, IResource) |