Fix warning for misuse of clear_config/2

The old warning message was producing an improperly formatted suggestion.
This commit is contained in:
Mark Felder 2021-06-04 15:35:56 -05:00
parent a07310888f
commit d5daf59f88

View file

@ -42,8 +42,7 @@ defmodule Pleroma.Tests.Helpers do
# Displaying a warning to prevent unintentional clearing of all but one keys in section # Displaying a warning to prevent unintentional clearing of all but one keys in section
if Keyword.keyword?(temp_setting) and length(temp_setting) == 1 do if Keyword.keyword?(temp_setting) and length(temp_setting) == 1 do
Logger.warn( Logger.warn(
"Please change to `clear_config([section]); clear_config([section, key], value)`: " <> "Please change `clear_config([section], key: value)` to `clear_config([section, key], value)`"
"#{inspect(config_path)}, #{inspect(temp_setting)}"
) )
end end