diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2016-08-14 18:21:10 +0200 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2016-08-14 18:21:10 +0200 |
commit | f6fe29c80d11662a169806dcf413ecdedcb28fa3 (patch) | |
tree | 9958034c27521f720f8c5d83c12120ada196f48a /tree_diff_test.go | |
parent | 91bf16b2336e6f80f0742be729582fe5fbbada83 (diff) | |
download | go-git-f6fe29c80d11662a169806dcf413ecdedcb28fa3.tar.gz |
core: Storage, removing err returning *Storages
Diffstat (limited to 'tree_diff_test.go')
-rw-r--r-- | tree_diff_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tree_diff_test.go b/tree_diff_test.go index 2217eaa..8e53a4f 100644 --- a/tree_diff_test.go +++ b/tree_diff_test.go @@ -46,7 +46,7 @@ func (s *DiffTreeSuite) SetUpSuite(c *C) { r := packfile.NewSeekable(f) d := packfile.NewDecoder(r) - err = d.Decode(s.repos[fixRepo.url].os) + err = d.Decode(s.repos[fixRepo.url].s.ObjectStorage()) c.Assert(err, IsNil) c.Assert(f.Close(), IsNil) |