@@ -323,7 +323,7 @@ public void CanFastForwardCommit(bool fromDetachedHead, FastForwardStrategy fast
323
323
string path = SandboxMergeTestRepo ( ) ;
324
324
using ( var repo = new Repository ( path ) )
325
325
{
326
- if ( fromDetachedHead )
326
+ if ( fromDetachedHead )
327
327
{
328
328
Commands . Checkout ( repo , repo . Head . Tip . Id . Sha ) ;
329
329
}
@@ -512,7 +512,7 @@ public void CanMergeAndNotCommit()
512
512
{
513
513
Commit commitToMerge = repo . Branches [ "normal_merge" ] . Tip ;
514
514
515
- MergeResult result = repo . Merge ( commitToMerge , Constants . Signature , new MergeOptions ( ) { CommitOnSuccess = false } ) ;
515
+ MergeResult result = repo . Merge ( commitToMerge , Constants . Signature , new MergeOptions ( ) { CommitOnSuccess = false } ) ;
516
516
517
517
Assert . Equal ( MergeStatus . NonFastForward , result . Status ) ;
518
518
Assert . Null ( result . Commit ) ;
@@ -649,7 +649,7 @@ public void CanSpecifyConflictFileStrategy(CheckoutFileConflictStrategy conflict
649
649
650
650
// Get the blob containing the expected content.
651
651
Blob expectedBlob = null ;
652
- switch ( conflictStrategy )
652
+ switch ( conflictStrategy )
653
653
{
654
654
case CheckoutFileConflictStrategy . Theirs :
655
655
expectedBlob = repo . Lookup < Blob > ( conflict . Theirs . Id ) ;
@@ -731,7 +731,7 @@ public void CanMergeBranch(string branchName, FastForwardStrategy strategy, Merg
731
731
string path = SandboxMergeTestRepo ( ) ;
732
732
using ( var repo = new Repository ( path ) )
733
733
{
734
- Branch branch = repo . Branches [ branchName ] ;
734
+ Branch branch = repo . Branches [ branchName ] ;
735
735
MergeResult result = repo . Merge ( branch , Constants . Signature , new MergeOptions ( ) { FastForwardStrategy = strategy } ) ;
736
736
737
737
Assert . Equal ( expectedMergeStatus , result . Status ) ;
@@ -748,7 +748,7 @@ public void CanMergeIntoOrphanedBranch()
748
748
repo . Refs . Add ( "HEAD" , "refs/heads/orphan" , true ) ;
749
749
750
750
// Remove entries from the working directory
751
- foreach ( var entry in repo . RetrieveStatus ( ) )
751
+ foreach ( var entry in repo . RetrieveStatus ( ) )
752
752
{
753
753
Commands . Unstage ( repo , entry . FilePath ) ;
754
754
Commands . Remove ( repo , entry . FilePath , true ) ;
0 commit comments