get_material_deliveries test now passes

This commit is contained in:
Joel Klimont 2022-10-01 20:00:27 +02:00
parent f6b27971c4
commit e35b992865
2 changed files with 2 additions and 2 deletions

View file

@ -57,7 +57,7 @@ class Seeding:
:return: Json Object and status code as returned by the api.
:rtype: List
"""
res = requests.get(API_URL_GET_LOGISTIC_PLAN)
res = requests.get(API_URL_GET_MATERIAL_DELIVERIES)
result = json.loads(res.content)
logger.debug(f"Seeding.get_material_deliveries = {result}, status code = {res.status_code}")
return result