diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2015-12-12 03:22:52 +0100 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2015-12-12 03:22:52 +0100 |
commit | b543e4e02793a58db25148214ef149cb571792f5 (patch) | |
tree | d68b7e33aba06f67d3c3e301b4a68f09de0ded6a /objects_test.go | |
parent | c22c181f70e0afb294513315e9975b9f3f4c1d39 (diff) | |
download | go-git-b543e4e02793a58db25148214ef149cb571792f5.tar.gz |
blame code reorganization, and mutting the test
Diffstat (limited to 'objects_test.go')
-rw-r--r-- | objects_test.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/objects_test.go b/objects_test.go index a51f372..1ead65d 100644 --- a/objects_test.go +++ b/objects_test.go @@ -1,7 +1,6 @@ package git import ( - "fmt" "io/ioutil" "time" @@ -128,7 +127,6 @@ func (s *ObjectsSuite) TestParseSignature(c *C) { } for raw, exp := range cases { - fmt.Println("> testing", raw) got := &Signature{} got.Decode([]byte(raw)) |