@@ -361,7 +361,7 @@ public void MergeReportsCheckoutProgress()
361361OnCheckoutProgress = ( path , completed , total ) => wasCalled = true ,
362362} ;
363363
364- MergeResult result = repo . Merge ( commitToMerge , Constants . Signature , options ) ;
364+ repo . Merge ( commitToMerge , Constants . Signature , options ) ;
365365
366366Assert . True ( wasCalled ) ;
367367}
@@ -384,7 +384,7 @@ public void MergeReportsCheckoutNotifications()
384384CheckoutNotifyFlags = CheckoutNotifyFlags . Updated ,
385385} ;
386386
387- MergeResult result = repo . Merge ( commitToMerge , Constants . Signature , options ) ;
387+ repo . Merge ( commitToMerge , Constants . Signature , options ) ;
388388
389389Assert . True ( wasCalled ) ;
390390Assert . Equal ( CheckoutNotifyFlags . Updated , actualNotifyFlags ) ;
@@ -406,7 +406,7 @@ public void FastForwardMergeReportsCheckoutProgress()
406406OnCheckoutProgress = ( path , completed , total ) => wasCalled = true ,
407407} ;
408408
409- MergeResult result = repo . Merge ( commitToMerge , Constants . Signature , options ) ;
409+ repo . Merge ( commitToMerge , Constants . Signature , options ) ;
410410
411411Assert . True ( wasCalled ) ;
412412}
@@ -429,7 +429,7 @@ public void FastForwardMergeReportsCheckoutNotifications()
429429CheckoutNotifyFlags = CheckoutNotifyFlags . Updated ,
430430} ;
431431
432- MergeResult result = repo . Merge ( commitToMerge , Constants . Signature , options ) ;
432+ repo . Merge ( commitToMerge , Constants . Signature , options ) ;
433433
434434Assert . True ( wasCalled ) ;
435435Assert . Equal ( CheckoutNotifyFlags . Updated , actualNotifyFlags ) ;
@@ -665,7 +665,6 @@ public void MergeCanSpecifyMergeFileFavorOption(MergeFileFavor fileFavorFlag)
665665Branch branch = repo . Branches [ conflictBranchName ] ;
666666Assert . NotNull ( branch ) ;
667667
668- var status = repo . RetrieveStatus ( ) ;
669668MergeOptions mergeOptions = new MergeOptions ( )
670669{
671670MergeFileFavor = fileFavorFlag ,
0 commit comments