projects
/
brevno-suite
/
hugo
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
717f702
)
Remove noisy Println in test
author
bep
<bjorn.erik.pedersen@gmail.com>
Fri, 19 Dec 2014 13:21:05 +0000
(14:21 +0100)
committer
bep
<bjorn.erik.pedersen@gmail.com>
Fri, 19 Dec 2014 13:21:05 +0000
(14:21 +0100)
hugolib/shortcode_test.go
patch
|
blob
|
history
diff --git
a/hugolib/shortcode_test.go
b/hugolib/shortcode_test.go
index 3a215b77499e0054d69bfa2cea4a4ced93af8f9a..777384159048f4f2109ea5866e8ff5257e8d93c9 100644
(file)
--- 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 {