From 8f80698f50423164bdf36cd424f62bc72b72033f Mon Sep 17 00:00:00 2001 From: David Ashby Date: Sun, 25 Jul 2021 21:02:12 -0400 Subject: [PATCH] remove a stray print from the tests --- datastructures_test.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/datastructures_test.go b/datastructures_test.go index 2b7ccac..9029459 100644 --- a/datastructures_test.go +++ b/datastructures_test.go @@ -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 {