Skip to content

Commit

Permalink
add insecure flag to requestor tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bojand committed Aug 24, 2018
1 parent 5b9e967 commit b8eed72
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions requester_test.go
Expand Up @@ -70,6 +70,7 @@ func TestRequesterUnary(t *testing.T) {
Timeout: 20,
DialTimtout: 20,
Data: data,
Insecure: true,
})
assert.NoError(t, err)

Expand All @@ -93,6 +94,7 @@ func TestRequesterUnary(t *testing.T) {
Timeout: 20,
DialTimtout: 20,
Data: data,
Insecure: true,
})
assert.NoError(t, err)

Expand All @@ -119,6 +121,7 @@ func TestRequesterUnary(t *testing.T) {
Timeout: 20,
DialTimtout: 20,
Data: data,
Insecure: true,
})
assert.NoError(t, err)

Expand Down Expand Up @@ -165,6 +168,7 @@ func TestRequesterServerStreaming(t *testing.T) {
Timeout: 20,
DialTimtout: 20,
Data: data,
Insecure: true,
})
assert.NoError(t, err)

Expand Down Expand Up @@ -211,6 +215,7 @@ func TestRequesterClientStreaming(t *testing.T) {
Timeout: 20,
DialTimtout: 20,
Data: data,
Insecure: true,
})
assert.NoError(t, err)

Expand Down Expand Up @@ -259,6 +264,7 @@ func TestRequesterBidi(t *testing.T) {
Timeout: 20,
DialTimtout: 20,
Data: data,
Insecure: true,
})
assert.NoError(t, err)

Expand Down

0 comments on commit b8eed72

Please sign in to comment.