From f351f9c618a8c517afa535235d2b78fa270ffbe5 Mon Sep 17 00:00:00 2001 From: ArielMAJ Date: Wed, 15 Nov 2023 00:00:20 -0300 Subject: [PATCH 1/2] [UPT] Fix tests. --- tests/test_financial_goal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}), ) From 33876e7625790a6accbcf090a6fba7577edbbb60 Mon Sep 17 00:00:00 2001 From: ArielMAJ Date: Wed, 15 Nov 2023 00:01:07 -0300 Subject: [PATCH 2/2] [UPT] Bump version. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"