diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2017-07-26 21:46:49 +0200 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2017-07-26 21:46:49 +0200 |
commit | ab590eb89849a0319b8c5a4d7fd980137da7180d (patch) | |
tree | 15544e667d27d87ebd9b73295e11351d85e1a008 /worktree_commit_test.go | |
parent | e19163e22eb19b352dd022f6edc9d81e1cd7a7ed (diff) | |
download | go-git-ab590eb89849a0319b8c5a4d7fd980137da7180d.tar.gz |
worktree: expose underlying filesystem
Diffstat (limited to 'worktree_commit_test.go')
-rw-r--r-- | worktree_commit_test.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/worktree_commit_test.go b/worktree_commit_test.go index 8f3b7b0..f6744bc 100644 --- a/worktree_commit_test.go +++ b/worktree_commit_test.go @@ -54,8 +54,8 @@ func (s *WorktreeSuite) TestCommitParent(c *C) { fs := memfs.New() w := &Worktree{ - r: s.Repository, - fs: fs, + r: s.Repository, + Filesystem: fs, } err := w.Checkout(&CheckoutOptions{}) @@ -78,8 +78,8 @@ func (s *WorktreeSuite) TestCommitAll(c *C) { fs := memfs.New() w := &Worktree{ - r: s.Repository, - fs: fs, + r: s.Repository, + Filesystem: fs, } err := w.Checkout(&CheckoutOptions{}) |