Skip to content

Commit

Permalink
fix: black format
Browse files Browse the repository at this point in the history
  • Loading branch information
Samk13 committed Nov 26, 2024
1 parent 36bec82 commit e3bc51c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_invenio_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,9 +177,9 @@ def test_env():

os.environ["MYPREFIX_TESTVAR"] = "True"
os.environ["MYPREFIX_JUSTASTRING"] = "This is just a string"
os.environ[
"MYPREFIX_COMPLEX_DICT"
] = "{'complex': {'python': 'dict'}, 'with': ['list', 'and', 1234]}"
os.environ["MYPREFIX_COMPLEX_DICT"] = (
"{'complex': {'python': 'dict'}, 'with': ['list', 'and', 1234]}"
)
InvenioConfigEnvironment(app, prefix="MYPREFIX_")
assert app.config.get("TESTVAR") is True
assert app.config.get("JUSTASTRING") == "This is just a string"
Expand Down

0 comments on commit e3bc51c

Please sign in to comment.