API - refactor + typing errors fix
This commit is contained in:
@ -5,7 +5,7 @@ from flask import Flask
|
||||
|
||||
class TestHealthCheck:
|
||||
def test_it_returns_pong_on_health_check(self, app: Flask) -> None:
|
||||
""" => Ensure the /health_check route behaves correctly."""
|
||||
"""=> Ensure the /health_check route behaves correctly."""
|
||||
client = app.test_client()
|
||||
response = client.get('/api/ping')
|
||||
data = json.loads(response.data.decode())
|
||||
|
Reference in New Issue
Block a user