Python: Assert that we got the right ping.

This commit is contained in:
Jan-Erik Rediger 2022-08-03 14:15:15 +02:00 коммит произвёл Jan-Erik Rediger
Родитель ac70c112ce
Коммит 04384e44bd
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -208,6 +208,9 @@ def test_log_on_success(safe_httpserver, capfd):
assert 1 == len(safe_httpserver.requests)
request = safe_httpserver.requests[0]
assert "/data/path/" == request.path
captured = capfd.readouterr()
assert "successfully sent 200" in str(captured.err)