mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
tpl: Fix broken chomp test
This commit is contained in:
parent
f223f17c76
commit
e85b821d3e
1 changed files with 2 additions and 2 deletions
|
@ -1600,10 +1600,10 @@ func TestApply(t *testing.T) {
|
||||||
noStringers := []interface{}{tstNoStringer{}, tstNoStringer{}}
|
noStringers := []interface{}{tstNoStringer{}, tstNoStringer{}}
|
||||||
|
|
||||||
chomped, _ := apply(strings, "chomp", ".")
|
chomped, _ := apply(strings, "chomp", ".")
|
||||||
assert.Equal(t, []interface{}{"a", "b"}, chomped)
|
assert.Equal(t, []interface{}{template.HTML("a"), template.HTML("b")}, chomped)
|
||||||
|
|
||||||
chomped, _ = apply(strings, "chomp", "c\n")
|
chomped, _ = apply(strings, "chomp", "c\n")
|
||||||
assert.Equal(t, []interface{}{"c", "c"}, chomped)
|
assert.Equal(t, []interface{}{template.HTML("c"), template.HTML("c")}, chomped)
|
||||||
|
|
||||||
chomped, _ = apply(nil, "chomp", ".")
|
chomped, _ = apply(nil, "chomp", ".")
|
||||||
assert.Equal(t, []interface{}{}, chomped)
|
assert.Equal(t, []interface{}{}, chomped)
|
||||||
|
|
Loading…
Reference in a new issue