Fixing test which erroneously checked values and order, rather than just values.
authorspf13 <steve.francia@gmail.com>
Sun, 19 Jan 2014 02:26:34 +0000 (21:26 -0500)
committerspf13 <steve.francia@gmail.com>
Sun, 19 Jan 2014 02:26:34 +0000 (21:26 -0500)
hugolib/indexing_test.go

index 8bf74188b56edf4d9e468fd9a08efd87d75cf59c..aab34e464941942d8fb37eebc90a0711fac2fdfc 100644 (file)
@@ -1,16 +1,18 @@
 package hugolib
 
 import (
-       "strings"
-       "testing"
+    "strings"
+    "testing"
 )
 
 func TestSitePossibleIndexes(t *testing.T) {
-       site := new(Site)
-       page, _ := ReadFrom(strings.NewReader(PAGE_YAML_WITH_INDEXES_A), "path/to/page")
-       site.Pages = append(site.Pages, page)
-       indexes := site.possibleIndexes()
-       if !compareStringSlice(indexes, []string{"tags", "categories"}) {
-               t.Fatalf("possible indexes do not match [tags categories].  Got: %s", indexes)
-       }
+    site := new(Site)
+    page, _ := ReadFrom(strings.NewReader(PAGE_YAML_WITH_INDEXES_A), "path/to/page")
+    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)
+        }
+    }
 }