From df09fa9cf08ea1530e0b06c973ff4a15fadc8e8d Mon Sep 17 00:00:00 2001 From: Arno Wunderlich <arno.a.wunderlich@student.jyu.fi> Date: Wed, 22 Feb 2023 11:09:27 +0000 Subject: [PATCH] add debugging print --- tests/test_i18n.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_i18n.py b/tests/test_i18n.py index 82f056e9..1b4b522c 100644 --- a/tests/test_i18n.py +++ b/tests/test_i18n.py @@ -38,6 +38,7 @@ def test_for_supported_locales(app: Flask, babel: Babel): """ with app.app_context(): languages: List[Locale] = babel.list_translations() + print('Languages are: ', languages) # Using list comprehension to convert Enum to list of Locales # required_languages = [Locale.parse(locale.value) for locale in SupportedLocales] -- GitLab