1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-21 22:05:43 -04:00

Fixed: Wrong translation mapping can be used for file naming and metadata

Fixes #7243
This commit is contained in:
Qstick
2022-04-26 19:27:07 -05:00
parent 89e25a6241
commit 3125b038d5
14 changed files with 44 additions and 44 deletions
@@ -45,7 +45,7 @@ namespace NzbDrone.Core.Test.IndexerSearchTests
.Returns(_movie);
Mocker.GetMock<IMovieTranslationService>()
.Setup(s => s.GetAllTranslationsForMovie(It.IsAny<int>()))
.Setup(s => s.GetAllTranslationsForMovieMetadata(It.IsAny<int>()))
.Returns(new List<MovieTranslation>());
}