Fixing test which erroneously checked values and order, rather than just values.

This commit is contained in:
spf13 2014-01-18 21:26:34 -05:00
parent 44186c6af1
commit ae15ff0968

View file

@ -11,6 +11,8 @@ func TestSitePossibleIndexes(t *testing.T) {
site.Pages = append(site.Pages, page)
indexes := site.possibleIndexes()
if !compareStringSlice(indexes, []string{"tags", "categories"}) {
if !compareStringSlice(indexes, []string{"categories", "tags"}) {
t.Fatalf("possible indexes do not match [tags categories]. Got: %s", indexes)
}
}
}