diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2016-09-07 02:04:43 +0200 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2016-09-07 02:04:43 +0200 |
commit | 56adb5be3ad26a0045ea6c6a6d24dafdff15ba1c (patch) | |
tree | bd8ecbb6674f01f03f97fb15083bed0a3e8e021d /storage/filesystem/internal/dotgit | |
parent | 98a22e72a808aa0d5dd62339817404fd9e1c4db6 (diff) | |
download | go-git-56adb5be3ad26a0045ea6c6a6d24dafdff15ba1c.tar.gz |
format: packfile new interface
Diffstat (limited to 'storage/filesystem/internal/dotgit')
-rw-r--r-- | storage/filesystem/internal/dotgit/dotgit_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
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) |