@@ -361,7 +361,7 @@ public void MergeReportsCheckoutProgress()
361
361
OnCheckoutProgress = ( path , completed , total ) => wasCalled = true ,
362
362
} ;
363
363
364
- MergeResult result = repo . Merge ( commitToMerge , Constants . Signature , options ) ;
364
+ repo . Merge ( commitToMerge , Constants . Signature , options ) ;
365
365
366
366
Assert . True ( wasCalled ) ;
367
367
}
@@ -384,7 +384,7 @@ public void MergeReportsCheckoutNotifications()
384
384
CheckoutNotifyFlags = CheckoutNotifyFlags . Updated ,
385
385
} ;
386
386
387
- MergeResult result = repo . Merge ( commitToMerge , Constants . Signature , options ) ;
387
+ repo . Merge ( commitToMerge , Constants . Signature , options ) ;
388
388
389
389
Assert . True ( wasCalled ) ;
390
390
Assert . Equal ( CheckoutNotifyFlags . Updated , actualNotifyFlags ) ;
@@ -406,7 +406,7 @@ public void FastForwardMergeReportsCheckoutProgress()
406
406
OnCheckoutProgress = ( path , completed , total ) => wasCalled = true ,
407
407
} ;
408
408
409
- MergeResult result = repo . Merge ( commitToMerge , Constants . Signature , options ) ;
409
+ repo . Merge ( commitToMerge , Constants . Signature , options ) ;
410
410
411
411
Assert . True ( wasCalled ) ;
412
412
}
@@ -429,7 +429,7 @@ public void FastForwardMergeReportsCheckoutNotifications()
429
429
CheckoutNotifyFlags = CheckoutNotifyFlags . Updated ,
430
430
} ;
431
431
432
- MergeResult result = repo . Merge ( commitToMerge , Constants . Signature , options ) ;
432
+ repo . Merge ( commitToMerge , Constants . Signature , options ) ;
433
433
434
434
Assert . True ( wasCalled ) ;
435
435
Assert . Equal ( CheckoutNotifyFlags . Updated , actualNotifyFlags ) ;
@@ -665,7 +665,6 @@ public void MergeCanSpecifyMergeFileFavorOption(MergeFileFavor fileFavorFlag)
665
665
Branch branch = repo . Branches [ conflictBranchName ] ;
666
666
Assert . NotNull ( branch ) ;
667
667
668
- var status = repo . RetrieveStatus ( ) ;
669
668
MergeOptions mergeOptions = new MergeOptions ( )
670
669
{
671
670
MergeFileFavor = fileFavorFlag ,
0 commit comments