Removed useless prints in parser_test

This commit is contained in:
Karma Riuk 2023-08-07 17:43:01 +02:00
parent 7e86e29e82
commit 3f8f0a2e92

View File

@ -9,7 +9,6 @@ import (
)
func TestTextReadTrivial(t *testing.T) {
fmt.Println("---------- Trivial ----------")
/* trivial.txt
## ##
# #
@ -68,7 +67,6 @@ func TestTextReadTrivial(t *testing.T) {
}
func TestTextReadTrivialBigger(t *testing.T) {
fmt.Println("---------- Trivial Bigger ----------")
/* trivial-bigger.txt
### ###
### ###
@ -119,10 +117,6 @@ func TestTextReadTrivialBigger(t *testing.T) {
t.Fatalf("Didn't get the same size of nodes: %v, want %v", len(got.Nodes), len(nodes))
}
for _, node := range got.Nodes {
fmt.Println(node)
}
for i, got := range got.Nodes {
expected := nodes[i]
@ -135,7 +129,6 @@ func TestTextReadTrivialBigger(t *testing.T) {
}
func TestTextReadTrivialBiggerStaggered(t *testing.T) {
fmt.Println("---------- Trivial Staggered ----------")
/* trivial-bigger-staggered.txt
### ###
### ###
@ -191,10 +184,6 @@ func TestTextReadTrivialBiggerStaggered(t *testing.T) {
t.Fatalf("Didn't get the same size of nodes: %v, want %v", len(got.Nodes), len(nodes))
}
for _, node := range got.Nodes {
fmt.Println(node)
}
for i, got := range got.Nodes {
expected := nodes[i]
@ -207,8 +196,6 @@ func TestTextReadTrivialBiggerStaggered(t *testing.T) {
}
func TestTextReadNormal(t *testing.T) {
return
fmt.Println("---------- Normal ----------")
/* trivial-bigger-staggered.txt
##### #####
# # #
@ -354,10 +341,6 @@ func TestTextReadNormal(t *testing.T) {
t.Fatalf("Didn't get the same size of nodes: %v, want %v", len(got.Nodes), len(nodes))
}
for _, node := range got.Nodes {
fmt.Println(node)
}
for i, got := range got.Nodes {
expected := nodes[i]