tpl: Fix faulty ordering of relURL test cases
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 12 Aug 2016 22:36:15 +0000 (00:36 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 12 Aug 2016 22:36:15 +0000 (00:36 +0200)
tpl/template_funcs_test.go

index 38a94a113b5e71a86c64bd2530a966c9b5d4b976..92af921d1982a3b23fd3def597c86e2d2145935a 100644 (file)
@@ -122,7 +122,7 @@ readDir: {{ range (readDir ".") }}{{ .Name }}{{ end }}
 readFile: {{ readFile "README.txt" }}
 relURL 1: {{ "http://gohugo.io/" | relURL }}
 relURL 2: {{ "mystyle.css" | relURL }}
-relURL 2: {{ mul 2 21 | relURL }}
+relURL 3: {{ mul 2 21 | relURL }}
 replace: {{ replace "Batman and Robin" "Robin" "Catwoman" }}
 replaceRE: {{ "http://gohugo.io/docs" | replaceRE "^https?://([^/]+).*" "$1" }}
 safeCSS: {{ "Bat&Man" | safeCSS | safeCSS }}
@@ -188,7 +188,7 @@ readDir: README.txt
 readFile: Hugo Rocks!
 relURL 1: http://gohugo.io/
 relURL 2: /hugo/mystyle.css
-relURL 2: /hugo/42
+relURL 3: /hugo/42
 replace: Batman and Catwoman
 replaceRE: gohugo.io
 safeCSS: Bat&amp;Man