summaryrefslogtreecommitdiffstats
path: root/helpers/content_renderer_test.go
diff options
context:
space:
mode:
authorAlbert Nigmatzianov <albertnigma@gmail.com>2016-10-24 20:56:00 +0200
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2016-10-24 20:56:00 +0200
commitf21e2f25c99c547a2f35d209935f8f1c52fa2671 (patch)
treef2bb860213e88b0244c31144cfcd872665096f06 /helpers/content_renderer_test.go
parentd9f54a13c14f12ccc8af33e9dbd611c2cd113324 (diff)
all: Unify case of config variable names
All config variables starts with low-case and uses camelCase. If there is abbreviation at the beginning of the name, the whole abbreviation will be written in low-case. If there is abbreviation at the end of the name, the whole abbreviation will be written in upper-case. For example, rssURI.
Diffstat (limited to 'helpers/content_renderer_test.go')
-rw-r--r--helpers/content_renderer_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/helpers/content_renderer_test.go b/helpers/content_renderer_test.go
index 7baaadb20..82168fcfd 100644
--- a/helpers/content_renderer_test.go
+++ b/helpers/content_renderer_test.go
@@ -62,11 +62,11 @@ func TestCodeFence(t *testing.T) {
viper.Reset()
defer viper.Reset()
- viper.Set("PygmentsStyle", "monokai")
- viper.Set("PygmentsUseClasses", true)
+ viper.Set("pygmentsStyle", "monokai")
+ viper.Set("pygmentsUseClasses", true)
for i, d := range data {
- viper.Set("PygmentsCodeFences", d.enabled)
+ viper.Set("pygmentsCodeFences", d.enabled)
result := render(d.input)