cargo fmt

This commit is contained in:
Nikita Galaiko 2023-07-19 10:24:26 +02:00
parent 2b5e981e28
commit c7f29f5cb8

View File

@ -2180,11 +2180,8 @@ fn test_create_vbranch_from_behind_remote_branch() -> Result<()> {
)?;
// create a new virtual branch from the remote branch
let branch1_id = create_virtual_branch_from_branch(
&gb_repo,
&project_repository,
&remote_branch,
)?;
let branch1_id =
create_virtual_branch_from_branch(&gb_repo, &project_repository, &remote_branch)?;
let branches = list_virtual_branches(&gb_repo, &project_repository, true)?;
let branch1 = &branches.iter().find(|b| b.id == branch1_id).unwrap();