1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-09-15 18:57:04 +00:00

refactor(locale): remove an unused function

This commit is contained in:
jvoisin 2025-07-06 00:28:41 +02:00 committed by Frédéric Guillot
parent 915b7b3cf7
commit f2b805850c
2 changed files with 5 additions and 15 deletions

View file

@ -33,8 +33,11 @@ func TestParser(t *testing.T) {
}
func TestLoadCatalog(t *testing.T) {
if err := LoadCatalogMessages(); err != nil {
t.Fatal(err)
for language := range AvailableLanguages {
_, err := loadTranslationFile(language)
if err != nil {
t.Fatal(err)
}
}
}