Typo fixes and cleanup

This commit is contained in:
Rachid Mrad 2023-12-27 19:33:48 -05:00
parent 0951faa998
commit e211a59304
No known key found for this signature in database
GPG key ID: EF38E4CEC4A8F3CF
4 changed files with 3 additions and 8 deletions

View file

@ -17,8 +17,6 @@ class TestViews(TestCase):
# Make a GET request to the admin index page
response = self.client.get(admin_index_url)
print(f"response1 {response}")
# Assert that the response status code is 200 (OK)
self.assertEqual(response.status_code, 200)
@ -33,8 +31,6 @@ class TestViews(TestCase):
# Make a GET request to the export data page
response = self.client.get(export_data_url)
print(response)
# Assert that the response status code is 200 (OK) or the expected status code
self.assertEqual(response.status_code, 200)