From 223308ee235035d26ca75fe312fe0da6e6a33222 Mon Sep 17 00:00:00 2001 From: Máximo Cuadros Date: Thu, 11 Aug 2016 18:40:12 +0200 Subject: storage: seekable renamed to filesystem --- repository_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'repository_test.go') 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) } } -- cgit