From ab590eb89849a0319b8c5a4d7fd980137da7180d Mon Sep 17 00:00:00 2001 From: Máximo Cuadros Date: Wed, 26 Jul 2017 21:46:49 +0200 Subject: worktree: expose underlying filesystem --- worktree_commit_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'worktree_commit_test.go') 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{}) -- cgit