Skip to content

Commit

Permalink
fix temp dir
Browse files Browse the repository at this point in the history
Signed-off-by: Grant Linville <[email protected]>
  • Loading branch information
g-linville committed Oct 11, 2024
1 parent da88a68 commit 9d06b27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gptscript_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1562,7 +1562,7 @@ func TestCredentials(t *testing.T) {
}

func TestDatasets(t *testing.T) {
workspace, err := os.MkdirTemp("/tmp", "go-gptscript-test")
workspace, err := os.MkdirTemp("", "go-gptscript-test")
require.NoError(t, err)
defer func() {
_ = os.RemoveAll(workspace)
Expand Down

0 comments on commit 9d06b27

Please sign in to comment.