diff options
author | Miguel Molina <miguel@erizocosmi.co> | 2018-07-30 17:11:01 +0200 |
---|---|---|
committer | Miguel Molina <miguel@erizocosmi.co> | 2018-07-30 17:11:01 +0200 |
commit | 6f7fc05543861ee074aa17f75e1d1b5c1b948d48 (patch) | |
tree | faba2e97f21e3156b5de2fd651a02acadfb3f4ca /plumbing/format/packfile/packfile_test.go | |
parent | d314e86c179f755ca9c92c60d6b0aedd9f568767 (diff) | |
download | go-git-6f7fc05543861ee074aa17f75e1d1b5c1b948d48.tar.gz |
plumbing: packfile, fix package tests
Signed-off-by: Miguel Molina <miguel@erizocosmi.co>
Diffstat (limited to 'plumbing/format/packfile/packfile_test.go')
-rw-r--r-- | plumbing/format/packfile/packfile_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plumbing/format/packfile/packfile_test.go b/plumbing/format/packfile/packfile_test.go index 0d7a806..a17a483 100644 --- a/plumbing/format/packfile/packfile_test.go +++ b/plumbing/format/packfile/packfile_test.go @@ -109,7 +109,7 @@ var expectedEntries = map[plumbing.Hash]int64{ } func (s *PackfileSuite) TestContent(c *C) { - storer := memory.NewObjectStorage() + storer := memory.NewStorage() decoder, err := NewDecoder(NewScanner(s.f.Packfile()), storer) c.Assert(err, IsNil) |