add another bisect integration test

This commit is contained in:
Jesse Duffield 2022-01-26 16:46:54 +11:00
parent 5e9cfab283
commit 5e6e1617aa
170 changed files with 293 additions and 3 deletions

View file

@ -166,7 +166,7 @@ func (self *BisectCommands) IsDone() (bool, []string, error) {
func (self *BisectCommands) ReachableFromStart(ref string, startRef string) bool {
err := self.cmd.New(
fmt.Sprintf("git merge-base --is-ancestor %s %s", startRef, ref),
).Run()
).DontLog().Run()
return err == nil
}