From 525ba4e284a251bb8fd074227a13c4a3478b78dc Mon Sep 17 00:00:00 2001 From: Thomas Sileo Date: Sun, 20 May 2018 22:55:52 +0200 Subject: [PATCH] Fix the test suite --- tests/integration_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration_test.py b/tests/integration_test.py index 3595ca4..7b8510f 100644 --- a/tests/integration_test.py +++ b/tests/integration_test.py @@ -4,4 +4,4 @@ def test_ping_homepage(): """Ensure the homepage is accessible.""" resp = requests.get('http://localhost:5005') resp.raise_for_status() - assert 'ci@localhost' in resp.text + assert resp.status_code == 200