Skip to content

Commit

Permalink
review: minor changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
ldez authored and traefiker committed Apr 2, 2019
1 parent 231a398 commit 3ebdea1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration/try/condition.go
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ func HasHeaderStruct(header http.Header) ResponseCondition {
return func(res *http.Response) error {
for key := range header {
if _, ok := res.Header[key]; ok {
//Header exists in the response, test it.
// Header exists in the response, test it.
eq := reflect.DeepEqual(header[key], res.Header[key])
if !eq {
return fmt.Errorf("for header %s got values %v, wanted %v", key, res.Header[key], header[key])
Expand Down

0 comments on commit 3ebdea1

Please sign in to comment.