mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-09 12:32:31 +01:00
Fixed: UpdateMovieQualityService Tests.
This commit is contained in:
parent
4283de1e9e
commit
34c838fdd5
@ -10,6 +10,7 @@
|
|||||||
using NzbDrone.Core.Parser.Model;
|
using NzbDrone.Core.Parser.Model;
|
||||||
using NzbDrone.Core.Qualities;
|
using NzbDrone.Core.Qualities;
|
||||||
using NzbDrone.Core.Test.Framework;
|
using NzbDrone.Core.Test.Framework;
|
||||||
|
using NzbDrone.Test.Common;
|
||||||
|
|
||||||
namespace NzbDrone.Core.Test.MediaFiles
|
namespace NzbDrone.Core.Test.MediaFiles
|
||||||
{
|
{
|
||||||
@ -58,6 +59,8 @@ public void should_not_update_if_unable_to_parse()
|
|||||||
{
|
{
|
||||||
ExecuteCommand();
|
ExecuteCommand();
|
||||||
|
|
||||||
|
ExceptionVerification.ExpectedWarns(1);
|
||||||
|
|
||||||
Mocker.GetMock<IMediaFileService>().Verify(s => s.Update(It.IsAny<MovieFile>()), Times.Never());
|
Mocker.GetMock<IMediaFileService>().Verify(s => s.Update(It.IsAny<MovieFile>()), Times.Never());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -72,7 +72,7 @@ public void Execute(UpdateMovieFileQualityCommand command)
|
|||||||
|
|
||||||
ParsedMovieInfo parsedMovieInfo = null;
|
ParsedMovieInfo parsedMovieInfo = null;
|
||||||
|
|
||||||
if (latestImportedName?.IsNotNullOrWhiteSpace() == false)
|
if (latestImportedName?.IsNotNullOrWhiteSpace() == true)
|
||||||
{
|
{
|
||||||
parsedMovieInfo = _parsingService.ParseMovieInfo(latestImportedName, helpers);
|
parsedMovieInfo = _parsingService.ParseMovieInfo(latestImportedName, helpers);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user