diff options
Diffstat (limited to 'fixtures/fixtures.go')
-rw-r--r-- | fixtures/fixtures.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fixtures/fixtures.go b/fixtures/fixtures.go index 72b4f1c..15f0e02 100644 --- a/fixtures/fixtures.go +++ b/fixtures/fixtures.go @@ -11,6 +11,7 @@ import ( "gopkg.in/check.v1" "gopkg.in/src-d/go-git.v4/core" "gopkg.in/src-d/go-git.v4/utils/fs" + osfs "gopkg.in/src-d/go-git.v4/utils/fs/os" ) var RootFolder = "" @@ -161,7 +162,7 @@ func (f *Fixture) DotGit() fs.Filesystem { } folders = append(folders, path) - return fs.NewOS(path) + return osfs.NewOS(path) } type Fixtures []*Fixture |