diff options
author | Bjørn Erik Pedersen <[email protected]> | 2017-01-03 17:28:51 +0100 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2017-01-07 17:06:35 +0100 |
commit | 45e3ed517a17648d54e8ce33618a8f251cfec603 (patch) | |
tree | 160a1bbd03a107be08ae76018fb382268365e2a1 /hugolib/sitemap_test.go | |
parent | 24a286791f37cbf6638b37f29386949045d0bba2 (diff) | |
download | hugo-45e3ed517a17648d54e8ce33618a8f251cfec603.tar.gz hugo-45e3ed517a17648d54e8ce33618a8f251cfec603.zip |
all: Refactor to non-global logger
Note that this looks like overkill for just the logger, and that is correct,
but this will make sense once we start with the template handling etc.
Updates #2701
Diffstat (limited to 'hugolib/sitemap_test.go')
-rw-r--r-- | hugolib/sitemap_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hugolib/sitemap_test.go b/hugolib/sitemap_test.go index 3fb26638c..95f8739ec 100644 --- a/hugolib/sitemap_test.go +++ b/hugolib/sitemap_test.go @@ -46,6 +46,7 @@ func doTestSitemapOutput(t *testing.T, internal bool) { viper.Set("baseURL", "http://auth/bub/") s := &Site{ + deps: newDeps(DepsCfg{}), Source: &source.InMemorySource{ByteSource: weightedSources}, Language: helpers.NewDefaultLanguage(), } |