diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2016-08-11 18:40:12 +0200 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2016-08-11 18:40:12 +0200 |
commit | 223308ee235035d26ca75fe312fe0da6e6a33222 (patch) | |
tree | 47b226db432237dbb388ee70217d6a74de14b988 /repository_test.go | |
parent | 1f64d789038594098ea2c9cf796391f101d0bea5 (diff) | |
download | go-git-223308ee235035d26ca75fe312fe0da6e6a33222.tar.gz |
storage: seekable renamed to filesystem
Diffstat (limited to 'repository_test.go')
-rw-r--r-- | repository_test.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/repository_test.go b/repository_test.go index f2709eb..2d9fd14 100644 --- a/repository_test.go +++ b/repository_test.go @@ -6,7 +6,7 @@ import ( "gopkg.in/src-d/go-git.v4/clients/http" "gopkg.in/src-d/go-git.v4/core" - "gopkg.in/src-d/go-git.v4/storage/seekable" + "gopkg.in/src-d/go-git.v4/storage/filesystem" "gopkg.in/src-d/go-git.v4/utils/fs" "github.com/alcortesm/tgz" @@ -20,7 +20,7 @@ var dirFixturesInit = [...]struct { }{ { name: "binrels", - tgz: "storage/seekable/internal/gitdir/fixtures/alcortesm-binary-relations.tgz", + tgz: "storage/filesystem/internal/gitdir/fixtures/alcortesm-binary-relations.tgz", head: "c44b5176e99085c8fe36fa27b045590a7b9d34c9", }, } @@ -87,7 +87,7 @@ func (s *SuiteRepository) TestNewRepositoryFromFS(c *C) { c.Assert(err, ErrorMatches, `unable to find remote "origin"`) c.Assert(repo.Storage, NotNil, com) - c.Assert(repo.Storage, FitsTypeOf, &seekable.ObjectStorage{}, com) + c.Assert(repo.Storage, FitsTypeOf, &filesystem.ObjectStorage{}, com) } } |