From bea7b2e202dc3d60a59711be0e8c7b578ac64fed Mon Sep 17 00:00:00 2001 From: Nathan Youngman Date: Wed, 14 Oct 2015 15:11:30 -0600 Subject: [PATCH] Fix typo in shortcode tests --- hugolib/shortcode_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hugolib/shortcode_test.go b/hugolib/shortcode_test.go index ecc77f97d..a8eeca8e7 100644 --- a/hugolib/shortcode_test.go +++ b/hugolib/shortcode_test.go @@ -35,7 +35,7 @@ func CheckShortCodeMatchAndError(t *testing.T, input, expected string, template } if output != expected { - t.Fatalf("Shortcode render didn't match. got %q but exxpected %q", output, expected) + t.Fatalf("Shortcode render didn't match. got %q but expected %q", output, expected) } }