aboutsummaryrefslogtreecommitdiffstats
path: root/common_test.go
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2016-08-14 18:21:10 +0200
committerMáximo Cuadros <mcuadros@gmail.com>2016-08-14 18:21:10 +0200
commitf6fe29c80d11662a169806dcf413ecdedcb28fa3 (patch)
tree9958034c27521f720f8c5d83c12120ada196f48a /common_test.go
parent91bf16b2336e6f80f0742be729582fe5fbbada83 (diff)
downloadgo-git-f6fe29c80d11662a169806dcf413ecdedcb28fa3.tar.gz
core: Storage, removing err returning *Storages
Diffstat (limited to 'common_test.go')
-rw-r--r--common_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/common_test.go b/common_test.go
index e0d11b5..cd37e75 100644
--- a/common_test.go
+++ b/common_test.go
@@ -96,7 +96,7 @@ func unpackFixtures(c *C, fixtures ...[]packedFixture) map[string]*Repository {
r := packfile.NewStream(memStream)
d := packfile.NewDecoder(r)
- err = d.Decode(repos[fixture.url].os)
+ err = d.Decode(repos[fixture.url].s.ObjectStorage())
c.Assert(err, IsNil, comment)
c.Assert(f.Close(), IsNil, comment)