Skip to content

Commit

Permalink
fix for py3
Browse files Browse the repository at this point in the history
  • Loading branch information
mcdonc committed Sep 10, 2012
1 parent 27d874a commit cf3d1ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyramid/tests/test_renderers.py
Original file line number Diff line number Diff line change
Expand Up @@ -664,7 +664,7 @@ def test__make_response_result_is_None(self):
request.response = Response()
helper = self._makeOne('loo.foo')
response = helper._make_response(None, request)
self.assertEqual(response.body, '')
self.assertEqual(response.body, b'')

def test__make_response_with_content_type(self):
from pyramid.response import Response
Expand Down

0 comments on commit cf3d1ef

Please sign in to comment.