From 91061a7b4af2aaa7c7c97d0cd215a0dc28a42419 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Mon, 7 Aug 2023 12:17:08 +0300 Subject: Fix tests --- tests/unit/auth/test_token.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/unit/auth/test_token.py') diff --git a/tests/unit/auth/test_token.py b/tests/unit/auth/test_token.py index f66954f..971e4de 100644 --- a/tests/unit/auth/test_token.py +++ b/tests/unit/auth/test_token.py @@ -53,7 +53,7 @@ def test_token(fxtr_app, fxtr_oauth2_clients, test_data, expected): "username": email, "password": password} with fxtr_app.test_client() as client, db.cursor(conn) as cursor: - res = client.post("/api/oauth2/token", data=data) + res = client.post("/auth/token", data=data) # cleanup db cursor.execute("DELETE FROM oauth2_tokens WHERE access_token=?", (gen_token(None, None, None, None),)) -- cgit v1.2.3