remove a stray print from the tests
This commit is contained in:
parent
c4577b0cb9
commit
8f80698f50
@ -1,7 +1,6 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
|
||||||
"testing"
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -43,8 +42,6 @@ func TestDeletingFromTree(t *testing.T) {
|
|||||||
if tree.Get("quuz") != 4 {
|
if tree.Get("quuz") != 4 {
|
||||||
t.Fail()
|
t.Fail()
|
||||||
}
|
}
|
||||||
tree.Print(os.Stdout)
|
|
||||||
|
|
||||||
tree = NewStringyBTree("foo", 1).Insert("bar", 2).Insert("baz", 3).Insert("quuz", 4)
|
tree = NewStringyBTree("foo", 1).Insert("bar", 2).Insert("baz", 3).Insert("quuz", 4)
|
||||||
tree.Delete("foo")
|
tree.Delete("foo")
|
||||||
if tree.Get("foo") != nil {
|
if tree.Get("foo") != nil {
|
||||||
|
Loading…
Reference in New Issue
Block a user