From: Bjørn Erik Pedersen Date: Tue, 21 Jul 2015 19:12:03 +0000 (+0200) Subject: Fix broken test X-Git-Tag: v0.15~274 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=ea6ae769;p=brevno-suite%2Fhugo Fix broken test --- diff --git a/hugolib/pageSort_test.go b/hugolib/pageSort_test.go index 18b16bb0..cef5c608 100644 --- a/hugolib/pageSort_test.go +++ b/hugolib/pageSort_test.go @@ -15,7 +15,7 @@ func TestPageSortReverse(t *testing.T) { assert.Equal(t, 9, p[9].FuzzyWordCount) p = p.Reverse() assert.Equal(t, 9, p[0].FuzzyWordCount) - assert.Equal(t, 1, p[9].FuzzyWordCount) + assert.Equal(t, 0, p[9].FuzzyWordCount) } func BenchmarkSortByWeightAndReverse(b *testing.B) {