Skip to content

Commit bb2340b

Browse files
committed
fix: make vars capital in smoke tests
A recent change in gptscript got rid of the lowercase env vars because they don't work on Windows. This change updates the smoke tests. Signed-off-by: Donnie Adams <[email protected]>
1 parent 5e12ba6 commit bb2340b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: pkg/tests/smoke/testdata/Bob/test.gpt

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ name: bob
77
description: I'm Bob, a friendly guy.
88
args: question: The question to ask Bob.
99

10-
When asked how I am doing, respond with exactly "Thanks for asking "${question}", I'm doing great fellow friendly AI tool!"
10+
When asked how I am doing, respond with exactly "Thanks for asking "${QUESTION}", I'm doing great fellow friendly AI tool!"

Diff for: pkg/tests/smoke/testdata/BobAsShell/test.gpt

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ args: question: The question to ask Bob.
1010

1111
#!/bin/bash
1212

13-
echo "Thanks for asking ${question}, I'm doing great fellow friendly AI tool!"
13+
echo "Thanks for asking ${QUESTION}, I'm doing great fellow friendly AI tool!"

0 commit comments

Comments
 (0)