refactor: remove print

This commit is contained in:
moanos [he/him] 2025-01-01 09:46:20 +01:00
parent e2adb20231
commit a9c0f628f7
2 changed files with 3 additions and 1 deletions

View File

@ -52,3 +52,6 @@ class TestSearch(TestCase):
self.assertEqual(search_subscription1, search1) self.assertEqual(search_subscription1, search1)
def test_notification(self):
self.client.login(username='testuser0', password='12345')

View File

@ -67,7 +67,6 @@ class AnimalAndAdoptionTest(TestCase):
"save-and-add-another-animal": "Speichern"} "save-and-add-another-animal": "Speichern"}
response = self.client.post(reverse('add-adoption'), data=form_data) response = self.client.post(reverse('add-adoption'), data=form_data)
print(response.content)
self.assertTrue(response.status_code < 400) self.assertTrue(response.status_code < 400)
self.assertTrue(AdoptionNotice.objects.get(name="TestAdoption4").is_active) self.assertTrue(AdoptionNotice.objects.get(name="TestAdoption4").is_active)