Skip to content

Commit 07a5cb0

Browse files
committed
oauthclient: fix missing config in ORCID test
Signed-off-by: Jiri Kuncar <[email protected]>
1 parent 531653f commit 07a5cb0

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

invenio/modules/oauthclient/testsuite/test_contrib_orcid.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,11 @@ def create_app(self):
5858
WTF_CSRF_ENABLED=False,
5959
OAUTHCLIENT_STATE_ENABLED=False,
6060
CACHE_TYPE='simple',
61-
OAUTHCLIENT_REMOTE_APPS=dict(orcid=REMOTE_APP)
61+
OAUTHCLIENT_REMOTE_APPS=dict(orcid=REMOTE_APP),
62+
ORCID_APP_CREDENTIALS=dict(
63+
consumer_key='changeme',
64+
consumer_secret='changeme',
65+
),
6266
))
6367
return app
6468

0 commit comments

Comments
 (0)