@@ -323,7 +323,7 @@ public void CanFastForwardCommit(bool fromDetachedHead, FastForwardStrategy fast
323323 string path = SandboxMergeTestRepo ( ) ;
324324 using ( var repo = new Repository ( path ) )
325325 {
326- if ( fromDetachedHead )
326+ if ( fromDetachedHead )
327327 {
328328 Commands . Checkout ( repo , repo . Head . Tip . Id . Sha ) ;
329329 }
@@ -512,7 +512,7 @@ public void CanMergeAndNotCommit()
512512 {
513513 Commit commitToMerge = repo . Branches [ "normal_merge" ] . Tip ;
514514
515- MergeResult result = repo . Merge ( commitToMerge , Constants . Signature , new MergeOptions ( ) { CommitOnSuccess = false } ) ;
515+ MergeResult result = repo . Merge ( commitToMerge , Constants . Signature , new MergeOptions ( ) { CommitOnSuccess = false } ) ;
516516
517517 Assert . Equal ( MergeStatus . NonFastForward , result . Status ) ;
518518 Assert . Null ( result . Commit ) ;
@@ -649,7 +649,7 @@ public void CanSpecifyConflictFileStrategy(CheckoutFileConflictStrategy conflict
649649
650650 // Get the blob containing the expected content.
651651 Blob expectedBlob = null ;
652- switch ( conflictStrategy )
652+ switch ( conflictStrategy )
653653 {
654654 case CheckoutFileConflictStrategy . Theirs :
655655 expectedBlob = repo . Lookup < Blob > ( conflict . Theirs . Id ) ;
@@ -731,7 +731,7 @@ public void CanMergeBranch(string branchName, FastForwardStrategy strategy, Merg
731731 string path = SandboxMergeTestRepo ( ) ;
732732 using ( var repo = new Repository ( path ) )
733733 {
734- Branch branch = repo . Branches [ branchName ] ;
734+ Branch branch = repo . Branches [ branchName ] ;
735735 MergeResult result = repo . Merge ( branch , Constants . Signature , new MergeOptions ( ) { FastForwardStrategy = strategy } ) ;
736736
737737 Assert . Equal ( expectedMergeStatus , result . Status ) ;
@@ -748,7 +748,7 @@ public void CanMergeIntoOrphanedBranch()
748748 repo . Refs . Add ( "HEAD" , "refs/heads/orphan" , true ) ;
749749
750750 // Remove entries from the working directory
751- foreach ( var entry in repo . RetrieveStatus ( ) )
751+ foreach ( var entry in repo . RetrieveStatus ( ) )
752752 {
753753 Commands . Unstage ( repo , entry . FilePath ) ;
754754 Commands . Remove ( repo , entry . FilePath , true ) ;
0 commit comments