Fix Localization test

This commit is contained in:
Bogdan 2023-11-25 05:59:03 +02:00
parent fc482d4808
commit 0d69a42ae0

View file

@ -5,7 +5,6 @@
using NzbDrone.Core.Configuration;
using NzbDrone.Core.Localization;
using NzbDrone.Core.Test.Framework;
using NzbDrone.Test.Common;
namespace NzbDrone.Core.Test.Localization
{
@ -31,13 +30,11 @@ public void should_get_string_in_dictionary_if_lang_exists_and_string_exists()
[Test]
public void should_get_string_in_french()
{
Mocker.GetMock<IConfigService>().Setup(m => m.UILanguage).Returns("fr_fr");
Mocker.GetMock<IConfigService>().Setup(m => m.UILanguage).Returns("fr");
var localizedString = Subject.GetLocalizedString("BackupNow");
localizedString.Should().Be("Sauvegarder maintenant");
ExceptionVerification.ExpectedErrors(1);
}
[Test]