aboutsummaryrefslogtreecommitdiffstats
path: root/storage/filesystem/storage_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'storage/filesystem/storage_test.go')
-rw-r--r--storage/filesystem/storage_test.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/storage/filesystem/storage_test.go b/storage/filesystem/storage_test.go
index d7ebf71..23628c7 100644
--- a/storage/filesystem/storage_test.go
+++ b/storage/filesystem/storage_test.go
@@ -64,7 +64,9 @@ var _ = Suite(&StorageStaticSuite{})
func (s *StorageStaticSuite) SetUpTest(c *C) {
s.dir = c.MkDir()
- storage, err := NewStorageWithOptions(osfs.New(s.dir), StorageOptions{Static: true})
+ storage, err := NewStorageWithOptions(
+ osfs.New(s.dir),
+ storer.Options{Static: true})
c.Assert(err, IsNil)
setUpTest(&s.StorageSuite, c, storage)