删除没必要的注释!

This commit is contained in:
huangsimin 2018-10-25 15:43:58 +08:00
parent 54b481c9f5
commit 21a167304b
2 changed files with 0 additions and 4 deletions

View File

@ -30,7 +30,6 @@ func TestSession_Get(t *testing.T) {
fields fields
args args
}{
// TODO: Add test cases.
{
name: "Get test",
fields: fields{client: &http.Client{}},
@ -107,7 +106,6 @@ func TestSession_Setparams(t *testing.T) {
want *regexp.Regexp
wantErr bool
}{
// TODO: Add test cases.
{
name: "test Setparams",
args: args{params: []interface{}{map[string]string{"a": "1", "b": "2"}}},
@ -285,7 +283,6 @@ func TestSession_SetConfig(t *testing.T) {
args args
wantErr bool
}{
// TODO: Add test cases.
{
name: "test timeout",
args: args{typeConfig: ConfigRequestTimeout, values: 0.01},

View File

@ -170,7 +170,6 @@ func (wf *Workflow) SetBodyParams(params ...interface{}) *Workflow {
}
if defaultContentType == TypeFormData {
// TODO: form-data
createMultipart(wf.Body, params)
} else {