From be15b07733a41501f7a3f38d59579a7f4c8ddc22 Mon Sep 17 00:00:00 2001 From: bep Date: Wed, 29 Apr 2015 19:21:57 +0200 Subject: [PATCH] Fix typo in test --- hugolib/shortcode_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hugolib/shortcode_test.go b/hugolib/shortcode_test.go index b8cc49157..e583a5ce3 100644 --- a/hugolib/shortcode_test.go +++ b/hugolib/shortcode_test.go @@ -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 {