Commit da20c364 authored by Chris Bednarski's avatar Chris Bednarski

Removed unused variable breaking gorename

parent 28a13111
...@@ -122,10 +122,8 @@ func TestPush_noName(t *testing.T) { ...@@ -122,10 +122,8 @@ func TestPush_noName(t *testing.T) {
func TestPush_cliName(t *testing.T) { func TestPush_cliName(t *testing.T) {
var actual []string var actual []string
var actualOpts *uploadOpts
uploadFn := func(r io.Reader, opts *uploadOpts) (<-chan struct{}, <-chan error, error) { uploadFn := func(r io.Reader, opts *uploadOpts) (<-chan struct{}, <-chan error, error) {
actual = testArchive(t, r) actual = testArchive(t, r)
actualOpts = opts
doneCh := make(chan struct{}) doneCh := make(chan struct{})
close(doneCh) close(doneCh)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment