@@ -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