summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÖzgür Kesim <oec@codeblau.de>2020-02-25 21:56:48 +0100
committerÖzgür Kesim <oec@codeblau.de>2020-02-25 21:56:48 +0100
commit390017951eb80a2e1b58dbf9217e464f76dd71b3 (patch)
tree26d27e5be807b3ae08119d7d30b7336294d14a28
parentcf289e64743647b158ebcc85b4c7aade0d345067 (diff)
Remove superfluous fmt.Println in test
-rw-r--r--combinator_test.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/combinator_test.go b/combinator_test.go
index 17a0c11..40e2492 100644
--- a/combinator_test.go
+++ b/combinator_test.go
@@ -3,7 +3,6 @@ package goparsify
import (
"testing"
- "fmt"
"os"
"github.com/stretchr/testify/require"
@@ -80,8 +79,6 @@ func TestAny(t *testing.T) {
t.Run("ab a", func(t *testing.T) {
node, ps := runParser("ab a", p)
- fmt.Println(node)
-
require.False(t, ps.Errored())
require.Equal(t, "ab", node.Child[0].Token)
require.Equal(t, "a", node.Child[1].Token)