Skip to content

Commit 70d30c6

Browse files
committed
fix: address flakey test TestEvaluateWithToolListAndSubTool
Signed-off-by: Donnie Adams <[email protected]>
1 parent ae0f262 commit 70d30c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

client_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,12 +221,12 @@ func TestEvaluateWithToolListAndSubTool(t *testing.T) {
221221
tools := []fmt.Stringer{
222222
&ToolDef{
223223
Tools: []string{"echo"},
224-
Instructions: "echo hello there",
224+
Instructions: "echo 'hello there'",
225225
},
226226
&ToolDef{
227227
Name: "other",
228228
Tools: []string{"echo"},
229-
Instructions: "echo hello somewhere else",
229+
Instructions: "echo 'hello somewhere else'",
230230
},
231231
&ToolDef{
232232
Name: "echo",

0 commit comments

Comments
 (0)