migrate more tests

This commit is contained in:
Jesse Duffield 2023-02-22 21:57:32 +11:00
parent 22c10479d5
commit eabe7f462a
258 changed files with 380 additions and 548 deletions

View file

@ -179,7 +179,7 @@ func (self *Shell) StashWithMessage(message string) *Shell {
}
func (self *Shell) SetConfig(key string, value string) *Shell {
self.RunCommand(fmt.Sprintf(`git config --local "%s" %s`, key, value))
self.RunCommand(fmt.Sprintf(`git config --local "%s" "%s"`, key, value))
return self
}