Fix incorrect merge from main that broke tests (#721).
This commit is contained in:
parent
2453ecad42
commit
054bd52482
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ def make_environment(config):
|
||||||
option_name,
|
option_name,
|
||||||
environment_variable_name,
|
environment_variable_name,
|
||||||
) in DEFAULT_BOOL_OPTION_TO_UPPERCASE_ENVIRONMENT_VARIABLE.items():
|
) in DEFAULT_BOOL_OPTION_TO_UPPERCASE_ENVIRONMENT_VARIABLE.items():
|
||||||
value = storage_config.get(option_name, False)
|
value = config.get(option_name, False)
|
||||||
environment[environment_variable_name] = 'YES' if value else 'NO'
|
environment[environment_variable_name] = 'YES' if value else 'NO'
|
||||||
|
|
||||||
return environment
|
return environment
|
||||||
|
|
Loading…
Reference in a new issue