From 0da407c641fc16137a32713a75d2ea36b0e199cc Mon Sep 17 00:00:00 2001 From: Jingwen Owen Ou Date: Sat, 13 Jul 2013 10:03:37 -0700 Subject: [PATCH] Remove debug code --- commands/remote_test.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/commands/remote_test.go b/commands/remote_test.go index 633e9c2b..1d49b5d6 100644 --- a/commands/remote_test.go +++ b/commands/remote_test.go @@ -1,7 +1,6 @@ package commands import ( - "fmt" "github.com/bmizerany/assert" "github.com/jingweno/gh/github" "os" @@ -14,8 +13,6 @@ func TestTransformRemoteArgs(t *testing.T) { args := NewArgs([]string{"remote", "add", "jingweno"}) transformRemoteArgs(args) - fmt.Println(args) - assert.Equal(t, 3, args.ParamsSize()) assert.Equal(t, "add", args.FirstParam()) assert.Equal(t, "jingweno", args.GetParam(1)) -- GitLab