diff options
author | Miguel Molina <miguel@erizocosmi.co> | 2018-08-07 18:41:19 +0200 |
---|---|---|
committer | Miguel Molina <miguel@erizocosmi.co> | 2018-08-07 18:41:19 +0200 |
commit | 6a24b4c1f0cb9e5daf30fa7979f2643a967af1ad (patch) | |
tree | 970b68805183e6d6907a27cf6f796091d9dd3346 /storage/filesystem/object_test.go | |
parent | b173cc03edd25af3e868d83037168663ef84a329 (diff) | |
download | go-git-6a24b4c1f0cb9e5daf30fa7979f2643a967af1ad.tar.gz |
*: use parser to populate non writable storages and bug fixes
Signed-off-by: Miguel Molina <miguel@erizocosmi.co>
Diffstat (limited to 'storage/filesystem/object_test.go')
-rw-r--r-- | storage/filesystem/object_test.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/storage/filesystem/object_test.go b/storage/filesystem/object_test.go index ecd6beb..ae11c3b 100644 --- a/storage/filesystem/object_test.go +++ b/storage/filesystem/object_test.go @@ -115,7 +115,11 @@ func (s *FsSuite) TestPackfileIter(c *C) { for _, h := range ph { f, err := dg.ObjectPack(h) c.Assert(err, IsNil) - iter, err := NewPackfileIter(f, t) + + idxf, err := dg.ObjectPackIdx(h) + c.Assert(err, IsNil) + + iter, err := NewPackfileIter(f, idxf, t) c.Assert(err, IsNil) err = iter.ForEach(func(o plumbing.EncodedObject) error { c.Assert(o.Type(), Equals, t) |