We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 602cbd2 commit 4b09f95Copy full SHA for 4b09f95
1 file changed
wal_test.go
@@ -1331,12 +1331,12 @@ func TestIssue33(t *testing.T) {
1331
// Create a fresh log without allowempty, close, and reopen.
1332
// This should not fail with an ErrEmptyLog
1333
os.RemoveAll("testlog")
1334
- l, err := Open("log", nil)
+ l, err := Open("testlog", nil)
1335
if err != nil {
1336
t.Fatal(err)
1337
}
1338
l.Close()
1339
- l, err = Open("log", nil)
+ l, err = Open("testlog", nil)
1340
1341
1342
0 commit comments