99)
1010
1111func TestAppendAndReadSingleEntry (t * testing.T ) {
12- filePath := fmt .Sprintf ("%s%s" , os .TempDir (), "TestAppendAndReadSingleEntry" )
12+ filePath := fmt .Sprintf ("%s/ %s" , os .TempDir (), "TestAppendAndReadSingleEntry" )
1313 defer os .Remove (filePath )
1414 store , err := NewStore (filePath )
1515
@@ -25,7 +25,7 @@ func TestAppendAndReadSingleEntry(t *testing.T) {
2525}
2626
2727func TestAppendAndReadMultipleEntry (t * testing.T ) {
28- filePath := fmt .Sprintf ("%s%s" , os .TempDir (), "TestAppendAndReadMultipleEntry" )
28+ filePath := fmt .Sprintf ("%s/ %s" , os .TempDir (), "TestAppendAndReadMultipleEntry" )
2929 defer os .Remove (filePath )
3030 store , err := NewStore (filePath )
3131 defer store .Close ()
@@ -43,7 +43,7 @@ func TestAppendAndReadMultipleEntry(t *testing.T) {
4343}
4444
4545func TestReadFromANewStoreAfterClose (t * testing.T ) {
46- filePath := fmt .Sprintf ("%s%s" , os .TempDir (), "TestReadFromANewStoreAfterClose" )
46+ filePath := fmt .Sprintf ("%s/ %s" , os .TempDir (), "TestReadFromANewStoreAfterClose" )
4747 defer os .Remove (filePath )
4848 store , err := NewStore (filePath )
4949 defer store .Close ()
0 commit comments