Skip to content

Commit

Permalink
fix unicode test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
singingwolfboy committed Aug 11, 2015
1 parent 0c2bc8d commit b3d63bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/contrib/test_jira.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def api_request():
resp = app.test_client().get("/test")
headers = responses.calls[0].request.headers
assert "Content-Type" in headers
assert headers["Content-Type"] == "application/json"
assert headers["Content-Type"] == "application/json".encode('utf-8')


@responses.activate
Expand Down

0 comments on commit b3d63bc

Please sign in to comment.