Remove now superfluous lowercasing

See #2615
See #1129
This commit is contained in:
Bjørn Erik Pedersen
2016-10-24 21:33:11 +02:00
parent 5859c691ec
commit 333bb05512
2 changed files with 2 additions and 5 deletions

View File

@@ -337,9 +337,8 @@ func doTestShouldAlwaysHaveUglyURLs(t *testing.T, uglyURLs bool) {
viper.Set("disableRSS", false)
viper.Set("rssURI", "index.xml")
viper.Set("blackfriday",
// TODO(bep) https://github.com/spf13/viper/issues/261
map[string]interface{}{
strings.ToLower("plainIDAnchors"): true})
"plainIDAnchors": true})
viper.Set("uglyURLs", uglyURLs)
@@ -965,9 +964,8 @@ func setupLinkingMockSite(t *testing.T) *Site {
viper.Set("pluralizeListTitles", false)
viper.Set("canonifyURLs", false)
viper.Set("blackfriday",
// TODO(bep) see https://github.com/spf13/viper/issues/261
map[string]interface{}{
strings.ToLower("sourceRelativeLinksProjectFolder"): "/docs"})
"sourceRelativeLinksProjectFolder": "/docs"})
site := &Site{
Source: &source.InMemorySource{ByteSource: sources},