diff --git a/pyproject.toml b/pyproject.toml index b668a77..cbe9666 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "match-ibm-final-project" -version = "0.9.0" +version = "0.9.1" description = "[Match-IBM] Projeto Final: 06 - Calculadora de Meta Financeira com Economia Mensal" authors = ["ArielMAJ "] license = "MIT" diff --git a/tests/test_financial_goal.py b/tests/test_financial_goal.py index 4da21d0..9309ce5 100644 --- a/tests/test_financial_goal.py +++ b/tests/test_financial_goal.py @@ -66,7 +66,7 @@ ) def test_financial_goal(test_client, goal, monthly_savings, result, status_code): response = test_client.post( - "/goal/", + "/", content_type="application/json", data=json.dumps({"goal": goal, "monthly_savings": monthly_savings}), )