remove a stray print from the tests

This commit is contained in:
David 2021-07-25 21:02:12 -04:00
parent c4577b0cb9
commit 8f80698f50
1 changed files with 0 additions and 3 deletions

View File

@ -1,7 +1,6 @@
package main
import (
"os"
"testing"
)
@ -43,8 +42,6 @@ func TestDeletingFromTree(t *testing.T) {
if tree.Get("quuz") != 4 {
t.Fail()
}
tree.Print(os.Stdout)
tree = NewStringyBTree("foo", 1).Insert("bar", 2).Insert("baz", 3).Insert("quuz", 4)
tree.Delete("foo")
if tree.Get("foo") != nil {