diff options
Diffstat (limited to 'worktree_test.go')
-rw-r--r-- | worktree_test.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/worktree_test.go b/worktree_test.go index 97c4055..150176f 100644 --- a/worktree_test.go +++ b/worktree_test.go @@ -2,6 +2,7 @@ package git import ( "bytes" + "context" "io/ioutil" "os" "path/filepath" @@ -83,7 +84,7 @@ func (s *WorktreeSuite) TestPullUpdateReferencesIfNeeded(c *C) { func (s *WorktreeSuite) TestPullInSingleBranch(c *C) { r, _ := Init(memory.NewStorage(), memfs.New()) - err := r.clone(&CloneOptions{ + err := r.clone(context.Background(), &CloneOptions{ URL: s.GetBasicLocalRepositoryURL(), SingleBranch: true, }) |