Skip to content

Commit

Permalink
Update failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
aritra1999 committed May 10, 2024
1 parent a69c053 commit 6f65326
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions gordb/tests/commons/disk_io_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ func TestDiskIo(t *testing.T) {
}

var setUp = func() {
if err := os.Mkdir(storePath, 0755); err != nil && !os.IsExist(err) {
t.Errorf("%s", err)
}

if err := os.Mkdir(testStorePath, 0755); err != nil && !os.IsExist(err) {
t.Errorf("%s", err)
}
Expand Down

0 comments on commit 6f65326

Please sign in to comment.