From 4734147ac9998b53c565f98524c49603d8bb8cbc Mon Sep 17 00:00:00 2001 From: rogup Date: Fri, 22 Nov 2024 11:31:54 +0000 Subject: [PATCH] [front-end] Fix UTs --- .../src/components/panel/searchPanel/searchSlice.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/front-end/src/components/panel/searchPanel/searchSlice.test.ts b/apps/front-end/src/components/panel/searchPanel/searchSlice.test.ts index 6a727cfc..e1796124 100644 --- a/apps/front-end/src/components/panel/searchPanel/searchSlice.test.ts +++ b/apps/front-end/src/components/panel/searchPanel/searchSlice.test.ts @@ -140,8 +140,8 @@ describe("selectFilterOptions", () => { title: "Country", options: [ { value: "any", label: "- any -" }, // mocked i18n returns 'any' for this translation - { value: "GB", label: "United Kingdom" }, { value: "FR", label: "France" }, + { value: "GB", label: "United Kingdom" }, ], value: "any", }, @@ -171,8 +171,8 @@ describe("selectFilterOptions", () => { title: "Pays", options: [ { value: "any", label: "- any -" }, - { value: "GB", label: "Royaume-Uni" }, { value: "FR", label: "France" }, + { value: "GB", label: "Royaume-Uni" }, ], value: "any", }, @@ -182,8 +182,8 @@ describe("selectFilterOptions", () => { options: [ { value: "any", label: "- any -" }, { value: "ICA210", label: "Logement" }, - { value: "ICA220", label: "Transports" }, { value: "ICA230", label: "Services publics" }, + { value: "ICA220", label: "Transports" }, ], value: "any", },