cranky fixes

This commit is contained in:
Nikita Galaiko 2023-10-24 14:10:06 +02:00 committed by GitButler
parent 687d73897a
commit f66c1e4db7
2 changed files with 2 additions and 2 deletions

View File

@ -87,7 +87,7 @@ impl TestProject {
let mut remote = self.local_repository.find_remote("origin").unwrap();
remote
.fetch(&["+refs/heads/*:refs/remotes/origin/*"], None)
.unwrap()
.unwrap();
}
/// works like if we'd open and merge a PR on github. does not update local.

View File

@ -1292,7 +1292,7 @@ mod upstream {
.find(|b| b.id == branch1_id)
.unwrap();
repository.merge(&branch.upstream.as_ref().unwrap().name);
repository.fetch()
repository.fetch();
}
let oid3 = {