From: Bjørn Erik Pedersen Date: Mon, 19 Sep 2016 00:44:21 +0000 (+0200) Subject: tpl: Set i18n bundle once per test run X-Git-Tag: v0.17~40 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=2105e42a;p=brevno-suite%2Fhugo tpl: Set i18n bundle once per test run No real practical difference, but more clear. --- diff --git a/tpl/template_i18n_test.go b/tpl/template_i18n_test.go index 2940c8d4..4578005a 100644 --- a/tpl/template_i18n_test.go +++ b/tpl/template_i18n_test.go @@ -34,9 +34,9 @@ func doTestI18nTranslate(t *testing.T, data []test, lang, id string) string { if err != nil { t.Errorf("Error parsing translation file: %s", err) } - SetI18nTfuncs(i18nBundle) } + SetI18nTfuncs(i18nBundle) SetTranslateLang(lang) translated, err := I18nTranslate(id, nil)