diff options
Diffstat (limited to 'storage/filesystem/storage_test.go')
-rw-r--r-- | storage/filesystem/storage_test.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/storage/filesystem/storage_test.go b/storage/filesystem/storage_test.go index 0e8ffb3..c48fdd2 100644 --- a/storage/filesystem/storage_test.go +++ b/storage/filesystem/storage_test.go @@ -5,9 +5,8 @@ import ( "gopkg.in/src-d/go-git.v4/storage/test" - "srcd.works/go-billy.v1/os" - . "gopkg.in/check.v1" + "srcd.works/go-billy.v1/osfs" ) func Test(t *testing.T) { TestingT(t) } @@ -19,7 +18,7 @@ type StorageSuite struct { var _ = Suite(&StorageSuite{}) func (s *StorageSuite) SetUpTest(c *C) { - storage, err := NewStorage(os.New(c.MkDir())) + storage, err := NewStorage(osfs.New(c.MkDir())) c.Assert(err, IsNil) s.BaseStorageSuite = test.NewBaseStorageSuite(storage) |