Removed a redundant test in the RunTestCase test case.

This commit is contained in:
依瑪貓 2022-12-05 17:43:33 +08:00
parent 8c3d6fd962
commit b3e06e3e5b

View File

@ -74,8 +74,6 @@ class RunTestCase(unittest.TestCase):
self.assertEqual(response.status_code, 302)
response = self.client.get("/accounting/", follow=True)
self.assertEqual(response.status_code, 200)
response = self.client.get("/accounting/", follow=True)
self.assertEqual(response.status_code, 200)
today: str = datetime.today().strftime("%Y-%m-%d")