Skip to content
This repository has been archived by the owner on Sep 11, 2020. It is now read-only.

Commit

Permalink
fixed windows failed test: "152 FAIL: worktree_test.go:278: WorktreeS…
Browse files Browse the repository at this point in the history
…uite.TestCheckoutSymlink"
  • Loading branch information
mcarmonaa committed Aug 3, 2017
1 parent 8b41667 commit fadb6e9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions worktree_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,10 @@ func (s *WorktreeSuite) TestCheckout(c *C) {
}

func (s *WorktreeSuite) TestCheckoutSymlink(c *C) {
if runtime.GOOS == "windows" {
c.Skip("git doesn't support symlinks by default in windows")
}

dir, err := ioutil.TempDir("", "checkout")
defer os.RemoveAll(dir)

Expand Down

0 comments on commit fadb6e9

Please sign in to comment.