Skip to content

Commit bc1986e

Browse files
committed
chore: remove debug printing in tests
Signed-off-by: Donnie Adams <[email protected]>
1 parent a1a0cb8 commit bc1986e

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

client_test.go

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ func TestEvaluateWithContext(t *testing.T) {
9090
if err != nil {
9191
t.Fatalf("Error getting current working directory: %v", err)
9292
}
93-
fmt.Println(wd)
9493

9594
tool := &ToolDef{
9695
Instructions: "What is the capital of the united states?",
@@ -104,10 +103,6 @@ func TestEvaluateWithContext(t *testing.T) {
104103
t.Errorf("Error executing tool: %v", err)
105104
}
106105

107-
for event := range run.Events() {
108-
fmt.Println(event)
109-
}
110-
111106
out, err := run.Text()
112107
if err != nil {
113108
t.Errorf("Error reading output: %v", err)

0 commit comments

Comments
 (0)