summaryrefslogtreecommitdiffstats
path: root/langs/i18n/i18n_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'langs/i18n/i18n_test.go')
-rw-r--r--langs/i18n/i18n_test.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/langs/i18n/i18n_test.go b/langs/i18n/i18n_test.go
index 1ac6144dd..8629c35fc 100644
--- a/langs/i18n/i18n_test.go
+++ b/langs/i18n/i18n_test.go
@@ -19,12 +19,13 @@ import (
"path/filepath"
"testing"
+ "github.com/bep/logg"
+ "github.com/gohugoio/hugo/common/loggers"
"github.com/gohugoio/hugo/common/types"
"github.com/gohugoio/hugo/config/testconfig"
"github.com/gohugoio/hugo/tpl/tplimpl"
- "github.com/gohugoio/hugo/common/loggers"
"github.com/gohugoio/hugo/resources/page"
"github.com/spf13/afero"
@@ -34,7 +35,7 @@ import (
"github.com/gohugoio/hugo/config"
)
-var logger = loggers.NewErrorLogger()
+var logger = loggers.NewDefault()
type i18nTest struct {
name string
@@ -406,7 +407,7 @@ other = "{{ . }} miesiÄ…ca"
for _, variant := range test.variants {
c.Assert(f(ctx, test.id, variant.Key), qt.Equals, variant.Value, qt.Commentf("input: %v", variant.Key))
- c.Assert(int(d.Log.LogCounters().WarnCounter.Count()), qt.Equals, 0)
+ c.Assert(d.Log.LoggCount(logg.LevelWarn), qt.Equals, 0)
}
})