Merge pull request #751 from ThomasWaldmann/sprint-branch
fixing issues found while debugging, fix error in 1 test
This commit is contained in:
commit
7f35fc2935
2 changed files with 3 additions and 2 deletions
|
|
@ -1551,7 +1551,7 @@ class Flask(_PackageBoundObject):
|
|||
# set the headers and status. We do this because there can be
|
||||
# some extra logic involved when creating these objects with
|
||||
# specific values (like default content type selection).
|
||||
if isinstance(rv, string_types):
|
||||
if isinstance(rv, string_types + (bytes, )):
|
||||
rv = self.response_class(rv, headers=headers, status=status)
|
||||
headers = status = None
|
||||
else:
|
||||
|
|
|
|||
|
|
@ -87,8 +87,9 @@ class AppContextTestCase(FlaskTestCase):
|
|||
with flask._app_ctx_stack.top:
|
||||
with flask._request_ctx_stack.top:
|
||||
pass
|
||||
self.assert_true(flask._request_ctx_stack.request.environ
|
||||
self.assert_true(flask._request_ctx_stack.top.request.environ
|
||||
['werkzeug.request'] is not None)
|
||||
return u''
|
||||
c = app.test_client()
|
||||
c.get('/')
|
||||
self.assertEqual(called, ['request', 'app'])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue