We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8242a27 commit 971ed37Copy full SHA for 971ed37
tests/test_application/test_app_context.py
@@ -30,11 +30,11 @@ def test_current_config_fails_when_there_is_no_ellar_config_module(caplog):
30
with caplog.at_level(logging.WARNING):
31
assert current_config.DEBUG is False
32
print(caplog.text)
33
- assert caplog.text == (
34
- "WARNING ellar:context.py:98 You are trying to access app config outside app "
+ assert (
+ "You are trying to access app config outside app "
35
"context and ELLAR_CONFIG_MODULE is not specified. This may cause differences "
36
- "in config values with the app\n"
37
- )
+ "in config values with the app"
+ ) in caplog.text
38
39
40
def test_current_injector_works():
0 commit comments