From 99b34c20657972a856c31ee1e8814ca2203d26a1 Mon Sep 17 00:00:00 2001 From: Stevie Robinson Date: Fri, 27 Oct 2023 15:53:05 +0200 Subject: [PATCH] Fix Localization test after translation changes --- .../Localization/LocalizationServiceFixture.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core.Test/Localization/LocalizationServiceFixture.cs b/src/NzbDrone.Core.Test/Localization/LocalizationServiceFixture.cs index 3e2f5f430..d43657c7f 100644 --- a/src/NzbDrone.Core.Test/Localization/LocalizationServiceFixture.cs +++ b/src/NzbDrone.Core.Test/Localization/LocalizationServiceFixture.cs @@ -36,7 +36,7 @@ public void should_get_string_in_french() var localizedString = Subject.GetLocalizedString("UiLanguage"); - localizedString.Should().Be("UI Langue"); + localizedString.Should().Be("Langue de l'interface utilisateur"); ExceptionVerification.ExpectedErrors(1); }