Remove print from client
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Torjus Håkestad 2022-01-20 17:58:25 +01:00
parent 8e88f09709
commit 733c0410fe

View File

@ -160,8 +160,5 @@ func (c *Client) Upload(ctx context.Context, files ...*files.File) ([]api.Respon
return nil, fmt.Errorf("error decoding response: %w", err) return nil, fmt.Errorf("error decoding response: %w", err)
} }
for _, r := range expectedResp {
fmt.Printf("Uploaded file %s\n", r.ID)
}
return expectedResp, nil return expectedResp, nil
} }