Fix typo in shortcode tests - hugo - [fork] hugo port for 9front
HTML git clone git@git.drkhsh.at/hugo.git
DIR Log
DIR Files
DIR Refs
DIR Submodules
DIR README
DIR LICENSE
---
DIR commit bea7b2e202dc3d60a59711be0e8c7b578ac64fed
DIR parent ec9c6912163f9ca3c10ad75aba939a76ec96e932
HTML Author: Nathan Youngman <git@nathany.com>
Date: Wed, 14 Oct 2015 15:11:30 -0600
Fix typo in shortcode tests
Diffstat:
M hugolib/shortcode_test.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git 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)
}
}