Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit 40a58d9

Browse files
committed
Fixed test
1 parent cccd21b commit 40a58d9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/test_12_context.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,19 +47,19 @@ def setup(self):
4747
self.conf = {
4848
'issuer': 'https://example.com',
4949
'db_conf': {
50-
'abstract_storage_cls': 'abstorage.extension.LabeledAbstractStorage',
50+
'abstract_storage_cls': 'oidcmsg.storage.extension.LabeledAbstractStorage',
5151
'keyjar': {
52-
'handler': 'abstorage.storages.abfile.AbstractFileSystem',
52+
'handler': 'oidcmsg.storage.abfile.AbstractFileSystem',
5353
'fdir': 'db/keyjar',
54-
'key_conv': 'abstorage.converter.QPKey',
54+
'key_conv': 'oidcmsg.storage.converter.QPKey',
5555
'value_conv': 'cryptojwt.serialize.item.KeyIssuer',
5656
'label': 'keyjar'
5757
},
5858
'default': {
59-
'handler': 'abstorage.storages.abfile.AbstractFileSystem',
59+
'handler': 'oidcmsg.storage.abfile.AbstractFileSystem',
6060
'fdir': 'db',
61-
'key_conv': 'abstorage.converter.QPKey',
62-
'value_conv': 'abstorage.converter.JSON'
61+
'key_conv': 'oidcmsg.storage.converter.QPKey',
62+
'value_conv': 'oidcmsg.storage.converter.JSON'
6363
}
6464
}
6565
}

0 commit comments

Comments
 (0)