Fix typo in test
authorbep <bjorn.erik.pedersen@gmail.com>
Wed, 29 Apr 2015 17:21:57 +0000 (19:21 +0200)
committerbep <bjorn.erik.pedersen@gmail.com>
Wed, 29 Apr 2015 17:22:11 +0000 (19:22 +0200)
hugolib/shortcode_test.go

index b8cc49157a001886f432fc7f334960c578b552ca..e583a5ce33654e2b2e4bdc7c3c4e39f3ab1380af 100644 (file)
@@ -274,7 +274,7 @@ func TestExtractShortcodes(t *testing.T) {
                }
 
                if this.expectShortCodes != "" {
-                       shortCodesAsStr := fmt.Sprintf("map%q", collectAndShortShortcodes(shortCodes))
+                       shortCodesAsStr := fmt.Sprintf("map%q", collectAndSortShortcodes(shortCodes))
                        if !strings.Contains(shortCodesAsStr, this.expectShortCodes) {
                                t.Fatalf("[%d] %s: Short codes not as expected, got %s - expected to contain %s", i, this.name, shortCodesAsStr, this.expectShortCodes)
                        }
@@ -282,7 +282,7 @@ func TestExtractShortcodes(t *testing.T) {
        }
 }
 
-func collectAndShortShortcodes(shortcodes map[string]shortcode) []string {
+func collectAndSortShortcodes(shortcodes map[string]shortcode) []string {
        var asArray []string
 
        for key, sc := range shortcodes {