mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-21 20:46:30 -05:00
helpers: fix some go vet errors
This commit is contained in:
parent
bea5feb34d
commit
bea42218b6
2 changed files with 2 additions and 2 deletions
|
@ -263,7 +263,7 @@ func TestSeq(t *testing.T) {
|
|||
|
||||
if b, ok := this.expect.(bool); ok && !b {
|
||||
if err == nil {
|
||||
t.Errorf("[%d] TestSeq didn't return an expected error %s", i)
|
||||
t.Errorf("[%d] TestSeq didn't return an expected error", i)
|
||||
}
|
||||
} else {
|
||||
if err != nil {
|
||||
|
|
|
@ -550,7 +550,7 @@ func TestRemoveSubpaths(t *testing.T) {
|
|||
got := RemoveSubpaths([]string{"hello", "hello/world", "foo/bar", ""})
|
||||
expect := []string{"hello", "foo/bar"}
|
||||
if !reflect.DeepEqual(got, expect) {
|
||||
t.Errorf("Test %d failed. Expected %q but got %q", expect, got)
|
||||
t.Errorf("Expected %q but got %q", expect, got)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue