diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2015-10-23 14:28:49 +0200 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2015-10-23 14:28:49 +0200 |
commit | d0a18ccd8eea3bdabc76d6dc5420af1ea30aae9f (patch) | |
tree | d6b15f621627027810a6a0ecf33edb74ab433905 /remote_test.go | |
parent | cf2874632223220e0445abf0a7806dc772c0b37a (diff) | |
download | go-git-d0a18ccd8eea3bdabc76d6dc5420af1ea30aae9f.tar.gz |
formats/packfile: type Hash instead of strings
Diffstat (limited to 'remote_test.go')
-rw-r--r-- | remote_test.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/remote_test.go b/remote_test.go index 3426fce..a3c602d 100644 --- a/remote_test.go +++ b/remote_test.go @@ -1,8 +1,9 @@ package git import ( + "gopkg.in/src-d/go-git.v2/formats/packfile" + . "gopkg.in/check.v1" - "gopkg.in/src-d/go-git.v2/packfile" ) type SuiteRemote struct{} |