mirror of
https://github.com/GothenburgBitFactory/timewarrior.git
synced 2025-06-26 10:54:28 +02:00
Tests: Fixed the config test framework for timew
This commit is contained in:
parent
b419a97d8b
commit
b92ab761af
1 changed files with 3 additions and 1 deletions
|
@ -63,7 +63,9 @@ class Timew(object):
|
|||
"""Run setup `var` as `value` in timew config
|
||||
"""
|
||||
# Add -- to avoid misinterpretation of - in things like UUIDs
|
||||
cmd = (self.timew, "config", "--", var, value)
|
||||
# TODO Revisit this decision as timew matures.
|
||||
#cmd = (self.timew, "config", "--", var, value)
|
||||
cmd = (self.timew, "config", var, value)
|
||||
return run_cmd_wait(cmd, env=self.env, input="y\n")
|
||||
|
||||
def del_config(self, var):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue