Skip to content
This repository was archived by the owner on Sep 11, 2020. It is now read-only.

Commit b7c1ec5

Browse files
authored
storage: filesystem fix tests
1 parent 3a85c05 commit b7c1ec5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

storage/filesystem/storage_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ var _ = Suite(&StorageSuite{})
1919

2020
func (s *StorageSuite) SetUpTest(c *C) {
2121
path := c.MkDir()
22-
storage, err := NewStorage(os.NewOS(path))
22+
storage, err := NewStorage(os.New(path))
2323
c.Assert(err, IsNil)
2424
s.BaseStorageSuite = test.NewBaseStorageSuite(
2525
storage.ObjectStorage(),

0 commit comments

Comments
 (0)