summaryrefslogtreecommitdiff
path: root/push_test.go
diff options
context:
space:
mode:
authorJesse Ezell <[email protected]>2014-03-21 22:16:26 -0700
committerJesse Ezell <[email protected]>2014-03-21 22:51:38 -0700
commit155f641683f09ec1a9511f42867ae3f278a6800b (patch)
tree75720dd634dd7b045a47c296bc401b292965e863 /push_test.go
parentf85c38ce22391ef8a932673dabf82219527ab433 (diff)
don't expose 3 different diff foreach methods. use structures instead of pointers to structures for diff detail. add patch error code handling. trim excess data from diff structures.
Diffstat (limited to 'push_test.go')
-rw-r--r--push_test.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/push_test.go b/push_test.go
index c1e6a22..65f4dd2 100644
--- a/push_test.go
+++ b/push_test.go
@@ -1,7 +1,6 @@
package git
import (
- "log"
"os"
"testing"
"time"
@@ -45,7 +44,6 @@ func Test_Push_ToRemote(t *testing.T) {
checkFatal(t, err)
err = push.StatusForeach(func(ref string, msg string) int {
- log.Printf("%s -> %s", ref, msg)
return 0
})
checkFatal(t, err)