Remove noisy Println in test - 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 331043b98e72be20ef7f1712122b1fc99797c10a
DIR parent 717f702e2fa32daf50170cdfa2d45b5d2304358b
HTML Author: bep <bjorn.erik.pedersen@gmail.com>
Date: Fri, 19 Dec 2014 14:21:05 +0100
Remove noisy Println in test
Diffstat:
M hugolib/shortcode_test.go | 1 -
1 file changed, 0 insertions(+), 1 deletion(-)
---
DIR diff --git a/hugolib/shortcode_test.go b/hugolib/shortcode_test.go
@@ -297,7 +297,6 @@ func TestReplaceShortcodeTokens(t *testing.T) {
{[]byte("An PREFIX-1."), "PREFIX", map[string]string{"PREFIX-1": "A", "PREFIX-2": "B"}, 1, false, []byte("An A.")},
{[]byte("An PREFIX-1 PREFIX-2."), "PREFIX", map[string]string{"PREFIX-1": "A", "PREFIX-2": "B"}, 1, false, []byte("An A PREFIX-2.")},
} {
- fmt.Printf("this<%#v>", this)
results, err := replaceShortcodeTokens(this.input, this.prefix, this.numReplacements, this.wrappedInDiv, this.replacements)
if b, ok := this.expect.(bool); ok && !b {