delete redundant step

This commit is contained in:
sriniv27 2021-02-12 17:52:57 -05:00
parent 0bf4e52c9f
commit 4f933181c6

View file

@ -10,12 +10,6 @@ import jrnl
from features.steps.core import _mock_getpass, _mock_time_parse
@given("we use the config {config_file}")
def load_config(context, config_file):
filepath = os.path.join("features/configs", config_file)
context.config_path = os.path.abspath(filepath)
@then("the runtime config should have {key_as_dots} set to {override_value}")
def config_override(context, key_as_dots: str, override_value: str):
key_as_vec = key_as_dots.split(".")