Skip to content

Commit

Permalink
Merge pull request #240 from cdent/fix-239
Browse files Browse the repository at this point in the history
Pass strict=True when creating httpclient
  • Loading branch information
cdent committed Jan 7, 2018
2 parents 6801cba + 713883c commit de01535
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gabbi/httpclient.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,5 +182,5 @@ def get_http(verbose=False, caption=''):
if verbose == 'headers':
body = False
return VerboseHttp(body=body, headers=headers, colorize=colorize,
stream=stream, caption=caption)
return Http()
stream=stream, caption=caption, strict=True)
return Http(strict=True)

0 comments on commit de01535

Please sign in to comment.