Skip to content

Commit 58f4573

Browse files
committed
Fix tests per previous commit
1 parent 92470d7 commit 58f4573

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_task_generation.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,16 +101,16 @@ def test_readme_example(self):
101101
def test_commandinput_space(self):
102102
t = Task.Command.CommandInput("taskGreeting", optional=False, position=None, prefix="-a",
103103
separate_value_from_prefix=True, default=None)
104-
self.assertEqual("-a ${taskGreeting}", t.get_string())
104+
self.assertEqual("-a ~{taskGreeting}", t.get_string())
105105

106106
def test_commandinput_nospace(self):
107107
t = Task.Command.CommandInput("taskGreeting", optional=False, position=None, prefix="val=",
108108
separate_value_from_prefix=False, default=None)
109-
self.assertEqual("val=${taskGreeting}", t.get_string())
109+
self.assertEqual("val=~{taskGreeting}", t.get_string())
110110

111111
def test_commandarg_space(self):
112112
t = Task.Command.CommandInput("argVal", position=None, prefix="-p", separate_value_from_prefix=True)
113-
self.assertEqual("-p ${argVal}", t.get_string())
113+
self.assertEqual("-p ~{argVal}", t.get_string())
114114

115115
def test_commandarg_nospace(self):
116116
t = Task.Command.CommandArgument(prefix="arg=", value="argVal", position=None, separate_value_from_prefix=False)

0 commit comments

Comments
 (0)