Skip to content
This repository has been archived by the owner on May 15, 2024. It is now read-only.

Commit

Permalink
fix: use test temp dir instead of system
Browse files Browse the repository at this point in the history
  • Loading branch information
elijaharita committed Nov 7, 2023
1 parent 2b7d0f2 commit d08cedf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration/singularity/cleanup_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
)

func TestCleanupScheduler(t *testing.T) {
localDir := filepath.Join(os.TempDir(), "motion-cleanup-test")
localDir := filepath.Join(t.TempDir(), "motion-cleanup-test")
require.NoError(t, os.MkdirAll(localDir, 0777))
local := blob.NewLocalStore(localDir)

Expand Down

0 comments on commit d08cedf

Please sign in to comment.