diff options
author | Santiago M. Mola <santi@mola.io> | 2017-02-09 15:28:48 +0100 |
---|---|---|
committer | Santiago M. Mola <santi@mola.io> | 2017-02-09 15:28:48 +0100 |
commit | 726204ed80d74f7503b93bb3fce665cab47dee33 (patch) | |
tree | 824dd6c705ebf4443d2a5b26d184d93afe9cd7a2 /common_test.go | |
parent | 4f7ef8fe49e4824b741792bca6424b332b40421f (diff) | |
download | go-git-726204ed80d74f7503b93bb3fce665cab47dee33.tar.gz |
git: make Storer public in Repository.
Diffstat (limited to 'common_test.go')
-rw-r--r-- | common_test.go | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/common_test.go b/common_test.go index 627f8b3..5aabd06 100644 --- a/common_test.go +++ b/common_test.go @@ -6,7 +6,6 @@ import ( "srcd.works/go-git.v4/plumbing" "srcd.works/go-git.v4/plumbing/format/packfile" - "srcd.works/go-git.v4/plumbing/storer" "srcd.works/go-git.v4/plumbing/transport" "srcd.works/go-git.v4/plumbing/transport/client" "srcd.works/go-git.v4/storage/filesystem" @@ -23,7 +22,6 @@ func Test(t *testing.T) { TestingT(t) } type BaseSuite struct { fixtures.Suite Repository *Repository - Storer storer.EncodedObjectStorer backupProtocol transport.Transport cache map[string]*Repository @@ -45,7 +43,6 @@ func (s *BaseSuite) TearDownSuite(c *C) { func (s *BaseSuite) buildBasicRepository(c *C) { f := fixtures.Basic().One() s.Repository = s.NewRepository(f) - s.Storer = s.Repository.s } func (s *BaseSuite) NewRepository(f *fixtures.Fixture) *Repository { |