Fix tests

This commit is contained in:
Alvaro Parker 2025-08-10 23:24:40 -04:00
parent 3bed7a4f0d
commit 46ed4fad44
No known key found for this signature in database
2 changed files with 2 additions and 1 deletions

View file

@ -321,7 +321,7 @@ impl GitRepository for FakeGitRepository {
}
fn stash_entries(&self) -> BoxFuture<'_, Result<git::stash::GitStash>> {
unimplemented!()
async { Ok(git::stash::GitStash::default()) }.boxed()
}
fn branches(&self) -> BoxFuture<'_, Result<Vec<Branch>>> {