Skip to content

Commit eb67973

Browse files
committed
fix temp dir
Signed-off-by: Grant Linville <[email protected]>
1 parent cbf6d34 commit eb67973

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gptscript_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1562,7 +1562,7 @@ func TestCredentials(t *testing.T) {
15621562
}
15631563

15641564
func TestDatasets(t *testing.T) {
1565-
workspace, err := os.MkdirTemp("/tmp", "go-gptscript-test")
1565+
workspace, err := os.MkdirTemp("", "go-gptscript-test")
15661566
require.NoError(t, err)
15671567
defer func() {
15681568
_ = os.RemoveAll(workspace)

0 commit comments

Comments
 (0)