removed debug from test

This commit is contained in:
Anton Zhyrney 2017-01-07 07:14:27 +02:00
parent 47a4f34cdf
commit 434fa74e67

View File

@ -191,6 +191,6 @@ def test_with_decorator():
return text('I am get method')
app.add_route(DummyView.as_view(), '/')
request, response = sanic_endpoint_test(app, method="get", debug=True)
request, response = sanic_endpoint_test(app, method="get")
assert response.text == 'I am get method'
assert results[0] == 1