From c8e9e562be8a757e55f51867db548adaf9efaaa4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Sun, 9 Apr 2023 09:16:18 +0800 Subject: [PATCH] Fixed a URL in the test_nobody test of the ReportTestCase test case. --- tests/test_report.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_report.py b/tests/test_report.py index 590f324..883735d 100644 --- a/tests/test_report.py +++ b/tests/test_report.py @@ -96,7 +96,7 @@ class ReportTestCase(unittest.TestCase): response = client.get(f"{PREFIX}/unapplied") self.assertEqual(response.status_code, 403) - response = client.get(f"{PREFIX}/unapplied") + response = client.get(f"{PREFIX}/unapplied/{Accounts.PAYABLE}") self.assertEqual(response.status_code, 403) def test_viewer(self) -> None: