diff options
author | Santiago M. Mola <santi@mola.io> | 2017-04-28 15:20:51 +0200 |
---|---|---|
committer | Santiago M. Mola <santi@mola.io> | 2017-04-28 16:33:31 +0200 |
commit | 4a670e130804d630fa056e4a60101698dc7a9af1 (patch) | |
tree | 289fed4a798d9e3c7bdc633970109d8a7a856737 /submodule_test.go | |
parent | 727bf94da8e3cebd3ff467d30425b12d671fbca7 (diff) | |
download | go-git-4a670e130804d630fa056e4a60101698dc7a9af1.tar.gz |
do not convert local paths to URL
* Do not convert local paths to URLs, just keep them as they
are.
* This way we add support for Windows without taking care of
Windows path-to-URL conversion.
Diffstat (limited to 'submodule_test.go')
-rw-r--r-- | submodule_test.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/submodule_test.go b/submodule_test.go index 6e06191..fdbe4a8 100644 --- a/submodule_test.go +++ b/submodule_test.go @@ -1,15 +1,14 @@ package git import ( - "fmt" "io/ioutil" "os" "path/filepath" "github.com/src-d/go-git-fixtures" + "gopkg.in/src-d/go-git.v4/plumbing" . "gopkg.in/check.v1" - "gopkg.in/src-d/go-git.v4/plumbing" ) type SubmoduleSuite struct { @@ -27,7 +26,7 @@ func (s *SubmoduleSuite) SetUpTest(c *C) { c.Assert(err, IsNil) r, err := PlainClone(filepath.Join(dir, "worktree"), false, &CloneOptions{ - URL: fmt.Sprintf("file://%s", path), + URL: path, }) c.Assert(err, IsNil) |