diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2017-01-30 22:03:19 +0100 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2017-01-30 22:03:19 +0100 |
commit | 80179adaab815eaf75099a5ff31e48c6bd07d1dc (patch) | |
tree | 8973e44f42a5dc71054a4a45997a29103530ae17 /storage/filesystem/internal | |
parent | e80d7b7267ba9f2057f259be331c4de927a60ecb (diff) | |
download | go-git-80179adaab815eaf75099a5ff31e48c6bd07d1dc.tar.gz |
rename billy imports
Diffstat (limited to 'storage/filesystem/internal')
-rw-r--r-- | storage/filesystem/internal/dotgit/dotgit_test.go | 3 | ||||
-rw-r--r-- | storage/filesystem/internal/dotgit/writers_test.go | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/storage/filesystem/internal/dotgit/dotgit_test.go b/storage/filesystem/internal/dotgit/dotgit_test.go index bff90af..eb11478 100644 --- a/storage/filesystem/internal/dotgit/dotgit_test.go +++ b/storage/filesystem/internal/dotgit/dotgit_test.go @@ -10,9 +10,8 @@ import ( "gopkg.in/src-d/go-git.v4/fixtures" "gopkg.in/src-d/go-git.v4/plumbing" - osfs "srcd.works/go-billy.v1/os" - . "gopkg.in/check.v1" + "srcd.works/go-billy.v1/osfs" ) func Test(t *testing.T) { TestingT(t) } diff --git a/storage/filesystem/internal/dotgit/writers_test.go b/storage/filesystem/internal/dotgit/writers_test.go index c546a3a..65ef5dc 100644 --- a/storage/filesystem/internal/dotgit/writers_test.go +++ b/storage/filesystem/internal/dotgit/writers_test.go @@ -10,9 +10,8 @@ import ( "gopkg.in/src-d/go-git.v4/fixtures" - osfs "srcd.works/go-billy.v1/os" - . "gopkg.in/check.v1" + "srcd.works/go-billy.v1/osfs" ) func (s *SuiteDotGit) TestNewObjectPack(c *C) { |