Skip to content

Commit 4b09f95

Browse files
committed
Rename log file for test
1 parent 602cbd2 commit 4b09f95

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

wal_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1331,12 +1331,12 @@ func TestIssue33(t *testing.T) {
13311331
// Create a fresh log without allowempty, close, and reopen.
13321332
// This should not fail with an ErrEmptyLog
13331333
os.RemoveAll("testlog")
1334-
l, err := Open("log", nil)
1334+
l, err := Open("testlog", nil)
13351335
if err != nil {
13361336
t.Fatal(err)
13371337
}
13381338
l.Close()
1339-
l, err = Open("log", nil)
1339+
l, err = Open("testlog", nil)
13401340
if err != nil {
13411341
t.Fatal(err)
13421342
}

0 commit comments

Comments
 (0)