diff --git a/tests/test_i18n.py b/tests/test_i18n.py index 82f056e907188133a5fc8bc888fb6ca3e97d0095..1b4b522ce7588d550993b3cc9e0549611b160dad 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]