mirror of
https://github.com/Lidarr/Lidarr
synced 2026-03-05 20:13:12 +01:00
Fix failing test
This commit is contained in:
parent
1d3c536c93
commit
1d2b35fdde
1 changed files with 2 additions and 2 deletions
|
|
@ -1,4 +1,4 @@
|
|||
using System;
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using Moq;
|
||||
|
|
@ -238,7 +238,7 @@ public void mode_none_should_throw_if_existing_target_when_not_overwriting()
|
|||
|
||||
WithExistingFile(_targetPath);
|
||||
|
||||
Assert.Throws<IOException>(() => Subject.TransferFile(_sourcePath, _targetPath, TransferMode.Move, false));
|
||||
Assert.Throws<DestinationAlreadyExistsException>(() => Subject.TransferFile(_sourcePath, _targetPath, TransferMode.Move, false));
|
||||
|
||||
Mocker.GetMock<IDiskProvider>()
|
||||
.Verify(v => v.DeleteFile(_targetPath), Times.Never());
|
||||
|
|
|
|||
Loading…
Reference in a new issue