Skip to content

Commit 57c45e9

Browse files
amazon de hot fix until faker issue is resolved
1 parent 1fcd287 commit 57c45e9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

l10n_CM/Unified/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ def get_html_files(live_site, region):
4242

4343
@pytest.fixture()
4444
def region():
45-
return os.environ.get("FX_REGION", "US")
45+
return os.environ.get("FX_REGION", "DE")
4646

4747

4848
@pytest.fixture()
4949
def live_site():
50-
return os.environ.get("CM_SITE", "demo")
50+
return os.environ.get("CM_SITE", "amazon")
5151

5252

5353
@pytest.fixture()

modules/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ def get_country_local_translation(self, country_name: str) -> str:
528528
Returns the local translation of the country name.
529529
530530
:param country_name: The full name of the country in english
531-
:return: The corresponding translation in the local language or the english name itself if not in the dictionary.
531+
:return: The corresponding translation in the local language or "Not Found" if not in the dictionary.
532532
"""
533533
return self.country_local_translation.get(country_name, country_name)
534534

0 commit comments

Comments
 (0)