Fixed a URL in the test_nobody test of the ReportTestCase test case.

This commit is contained in:
依瑪貓 2023-04-09 09:16:18 +08:00
parent ba43bd7e90
commit c8e9e562be

View File

@ -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: