diff --git a/surveil/tests/api/controllers/v1/test_hello.py b/surveil/tests/api/controllers/v1/test_hello.py index dcdf94c..03111b4 100644 --- a/surveil/tests/api/controllers/v1/test_hello.py +++ b/surveil/tests/api/controllers/v1/test_hello.py @@ -19,5 +19,5 @@ class TestRootController(functionalTest.FunctionalTest): def test_get(self): response = self.app.get('/v1/hello') - assert response.body == b"Hello World!" + self.assertEqual(response.body, b"Hello World!") assert response.status_int == 200