test: Fix backwards incompatibility with git 2.34

```
--- Expected
++++ actual:   stdout
   1      - branch 'master' set up to track 'origin/master'.
        1 + Branch 'master' set up to track remote branch 'master' from 'origin'.

Exit status: 0
```

As per @fintohaps' suggestion, this gets the tests passing again on git 2.34.

Co-Authored-By: fintohaps <fintan@monoidal.tech>
Signed-off-by: Yorgos Saslis <yorgos.work@proton.me>
This commit is contained in:
Yorgos Saslis 2024-05-23 16:25:27 +03:00 committed by cloudhead
parent a6e33ec19a
commit ce99f7e7e4
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ Then we add it as a remote.
```
$ git remote add origin file://$PWD/remote
$ git push -u origin master:master
branch 'master' set up to track 'origin/master'.
...
$ git branch -vv
* master f2de534 [origin/master] Second commit
```