upgrade pytest version that compatible with pytest-cov, fixes some caplog unit tests (#1464)

This commit is contained in:
7
2019-01-08 07:15:23 -08:00
committed by Stephen Sadowski
parent 96af1fe7cf
commit 8dd8e9916e
6 changed files with 16 additions and 16 deletions

View File

@@ -155,8 +155,8 @@ def test_handle_request_with_nested_sanic_exception(app, monkeypatch, caplog):
request, response = app.test_client.get("/")
assert response.status == 500
assert response.text == "Error: Mock SanicException"
assert caplog.record_tuples[0] == (
assert (
"sanic.root",
logging.ERROR,
"Exception occurred while handling uri: 'http://127.0.0.1:42101/'",
)
) in caplog.record_tuples