diff --git a/lib/store/bbolt/factory_test.go b/lib/store/bbolt/factory_test.go index 27d0c54..babc9f2 100644 --- a/lib/store/bbolt/factory_test.go +++ b/lib/store/bbolt/factory_test.go @@ -3,7 +3,6 @@ package bbolt import ( "encoding/json" "errors" - "path/filepath" "testing" ) @@ -27,13 +26,6 @@ func TestFactoryValid(t *testing.T) { cfg: Config{}, err: ErrMissingPath, }, - { - name: "unwritable folder", - cfg: Config{ - Path: filepath.Join("/", "testdb"), - }, - err: ErrCantWriteToPath, - }, } { t.Run(tt.name, func(t *testing.T) { data, err := json.Marshal(tt.cfg)