"""Integration API tests for ows-product-workflow.""" def test_health_check(api_client): """Test getting a response from the health check endpoint.""" response_get = api_client.get_health_check() assert response_get.status_code == 200, \ 'Result of GET multiple was {}, expected 200.'.format( response_get.status_code)