This commit is contained in:
Łukasz Magiera 2020-05-26 10:25:29 +02:00
parent 793d332002
commit 6fe92ff13c
4 changed files with 11 additions and 10 deletions

View File

@ -10,12 +10,14 @@ import (
)
type PathType bool
const (
PathStorage = false
PathSealing = true
)
type AcquireMode string
const (
AcquireMove = "move"
AcquireCopy = "copy"

View File

@ -63,7 +63,6 @@ func (t *TestingLocalStorage) init(subpath string) error {
return nil
}
var _ LocalStorage = &TestingLocalStorage{}
func TestLocalStorage(t *testing.T) {