From 56adb5be3ad26a0045ea6c6a6d24dafdff15ba1c Mon Sep 17 00:00:00 2001 From: Máximo Cuadros Date: Wed, 7 Sep 2016 02:04:43 +0200 Subject: format: packfile new interface --- storage/filesystem/internal/dotgit/dotgit_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'storage/filesystem/internal/dotgit') diff --git a/storage/filesystem/internal/dotgit/dotgit_test.go b/storage/filesystem/internal/dotgit/dotgit_test.go index 3f0a0eb..0097821 100644 --- a/storage/filesystem/internal/dotgit/dotgit_test.go +++ b/storage/filesystem/internal/dotgit/dotgit_test.go @@ -54,7 +54,7 @@ func (s *SuiteDotGit) SetUpSuite(c *C) { path, err := tgz.Extract(init.tgz) c.Assert(err, IsNil, com) - s.fixtures[init.name] = fs.NewOSClient(filepath.Join(path, ".git")) + s.fixtures[init.name] = fs.NewOS(filepath.Join(path, ".git")) } } @@ -233,7 +233,7 @@ func (s *SuiteDotGit) TestNewObjectPack(c *C) { log.Fatal(err) } - dot := New(fs.NewOSClient(dir)) + dot := New(fs.NewOS(dir)) r, err := os.Open("../../../../formats/packfile/fixtures/git-fixture.ofs-delta") c.Assert(err, IsNil) -- cgit