From cc013632a7bcad2d168e78f36753036ad72b3508 Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Wed, 20 Mar 2024 17:14:57 +0100 Subject: [PATCH] Updated python testing script to pass test_get_weekly_reports_user --- testing.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/testing.py b/testing.py index 491419f..9181d39 100644 --- a/testing.py +++ b/testing.py @@ -314,9 +314,8 @@ def test_get_weekly_reports_user(): # Get weekly reports for the user in the project response = requests.get( - getWeeklyReportsUserPath, + getWeeklyReportsUserPath + "/" + projectName, headers={"Authorization": "Bearer " + token}, - params={"username": username, "projectName": projectName}, ) dprint(response.text)