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:
parent
a6e33ec19a
commit
ce99f7e7e4
|
|
@ -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
|
||||
```
|
||||
|
|
|
|||
Loading…
Reference in New Issue