remove a stray print from the tests
This commit is contained in:
parent
c4577b0cb9
commit
8f80698f50
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user