diff options
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{}) |