diff options
Diffstat (limited to 'archaeological_operations/tests.py')
-rw-r--r-- | archaeological_operations/tests.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/archaeological_operations/tests.py b/archaeological_operations/tests.py index 5d41d0202..84b684410 100644 --- a/archaeological_operations/tests.py +++ b/archaeological_operations/tests.py @@ -1670,14 +1670,7 @@ class ParcelTest(ImportTest, TestCase): response = c.get(reverse("operation-parcels-modify", kwargs={"pk": operation.pk})) self.assertEqual(response.status_code, 200) - print(response) - self.assertInHTML( - '<select id="id_form-0-town" class="form-control" name="form-0-town"><select>', - town_1.name, - count=1 - ) self.assertContains(response, town_1.name) - print(response) self.assertContains(response, town_2.name) self.assertContains(response, parcel_1.year) self.assertContains(response, parcel_2.year) |