@@ -24,12 +24,14 @@ use crate::{
24
24
StashFlags ,
25
25
} ;
26
26
use crate :: {
27
- AnnotatedCommit , MergeAnalysis , MergeOptions , MergeFileOptions , MergeFileResult , MergePreference ,
28
- SubmoduleIgnore , SubmoduleStatus , SubmoduleUpdate ,
27
+ AnnotatedCommit , MergeAnalysis , MergeFileOptions , MergeFileResult , MergeOptions ,
28
+ MergePreference , SubmoduleIgnore , SubmoduleStatus , SubmoduleUpdate ,
29
29
} ;
30
30
use crate :: { ApplyLocation , ApplyOptions , Rebase , RebaseOptions } ;
31
31
use crate :: { Blame , BlameOptions , Reference , References , ResetType , Signature , Submodule } ;
32
- use crate :: { Blob , BlobWriter , Branch , BranchType , Branches , Commit , Config , Index , IndexEntry , Oid , Tree } ;
32
+ use crate :: {
33
+ Blob , BlobWriter , Branch , BranchType , Branches , Commit , Config , Index , IndexEntry , Oid , Tree ,
34
+ } ;
33
35
use crate :: { Describe , IntoCString , Reflog , RepositoryInitMode , RevparseMode } ;
34
36
use crate :: { DescribeOptions , Diff , DiffOptions , Odb , PackBuilder , TreeBuilder } ;
35
37
use crate :: { Note , Notes , ObjectType , Revwalk , Status , StatusOptions , Statuses , Tag , Transaction } ;
@@ -4175,12 +4177,14 @@ mod tests {
4175
4177
opts. our_label ( "ours" ) ;
4176
4178
opts. their_label ( "theirs" ) ;
4177
4179
opts. style_diff3 ( true ) ;
4178
- let merge_file_result = repo. merge_file_from_index ( & base, & ours, & theirs, Some ( & mut opts) ) . unwrap ( ) ;
4180
+ let merge_file_result = repo
4181
+ . merge_file_from_index ( & base, & ours, & theirs, Some ( & mut opts) )
4182
+ . unwrap ( ) ;
4179
4183
4180
4184
assert ! ( !merge_file_result. is_automergeable( ) ) ;
4181
4185
assert_eq ! (
4182
4186
String :: from_utf8_lossy( merge_file_result. content( ) ) . to_string( ) ,
4183
- r"<<<<<<< ours
4187
+ r"<<<<<<< ours
4184
4188
foo
4185
4189
||||||| ancestor
4186
4190
base
0 commit comments