diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2017-06-17 12:53:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-17 12:53:39 +0200 |
commit | 86f6ba1dea8972df7c017e01ddb2c097892bc220 (patch) | |
tree | a7add5abd733fbc4362d80eecd5fa16f23a21901 /submodule_test.go | |
parent | bf3a92052f715c507ace0cb9f2b7fb358f623abc (diff) | |
parent | aba32ceed59d77c84038fa421b230e1ea76a5e6b (diff) | |
download | go-git-86f6ba1dea8972df7c017e01ddb2c097892bc220.tar.gz |
Merge pull request #369 from smola/windows
Windows support
Diffstat (limited to 'submodule_test.go')
-rw-r--r-- | submodule_test.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/submodule_test.go b/submodule_test.go index fdbe4a8..2d3f7a6 100644 --- a/submodule_test.go +++ b/submodule_test.go @@ -127,7 +127,8 @@ func (s *SubmoduleSuite) TestUpdateWithRecursion(c *C) { c.Assert(err, IsNil) - _, err = s.Worktree.fs.Stat("itself/basic/LICENSE") + fs := s.Worktree.fs + _, err = fs.Stat(fs.Join("itself", "basic", "LICENSE")) c.Assert(err, IsNil) } |