Skip to content

Commit

Permalink
code: fixing codestyle
Browse files Browse the repository at this point in the history
  • Loading branch information
M3nin0 committed Feb 13, 2024
1 parent 3e8f7e3 commit 58476e4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ install_requires =
docs =
Sphinx>=4.5.0
tests =
black<=23.12.1
pytest-black>=0.3.0
invenio-app>=1.3.4,<2.0.0
invenio-db[postgresql,mysql]>=1.0.14,<2.0.0
Expand Down
12 changes: 6 additions & 6 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ def app_config(app_config):
"""Mimic an instance's configuration."""
app_config["JSONSCHEMAS_HOST"] = "localhost"

app_config["RECORDS_REFRESOLVER_CLS"] = (
"invenio_records.resolver.InvenioRefResolver"
)
app_config[
"RECORDS_REFRESOLVER_CLS"
] = "invenio_records.resolver.InvenioRefResolver"

app_config["RECORDS_REFRESOLVER_STORE"] = (
"invenio_jsonschemas.proxies.current_refresolver_store"
)
app_config[
"RECORDS_REFRESOLVER_STORE"
] = "invenio_jsonschemas.proxies.current_refresolver_store"

return app_config

Expand Down

0 comments on commit 58476e4

Please sign in to comment.