From da20c3645479c45d4720490f2fb9c40aff397986 Mon Sep 17 00:00:00 2001 From: Chris Bednarski Date: Mon, 13 Jul 2015 18:04:50 -0700 Subject: [PATCH] Removed unused variable breaking gorename --- command/push_test.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/command/push_test.go b/command/push_test.go index f1b7fd306..9d7b79be7 100644 --- a/command/push_test.go +++ b/command/push_test.go @@ -122,10 +122,8 @@ func TestPush_noName(t *testing.T) { func TestPush_cliName(t *testing.T) { var actual []string - var actualOpts *uploadOpts uploadFn := func(r io.Reader, opts *uploadOpts) (<-chan struct{}, <-chan error, error) { actual = testArchive(t, r) - actualOpts = opts doneCh := make(chan struct{}) close(doneCh)