diff options
author | Cefin <kevon@tuta.io> | 2022-01-24 15:28:18 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-12-12 12:20:59 +0100 |
commit | 314c2361af1e0e4230c44b96bc1f724d2252bde8 (patch) | |
tree | 0c8aeed95820620edfb7bbdb6542d2db739c4d90 /archaeological_operations/tests.py | |
parent | 86323d5180448f9c72a77ff599598e330838c417 (diff) | |
download | Ishtar-314c2361af1e0e4230c44b96bc1f724d2252bde8.tar.bz2 Ishtar-314c2361af1e0e4230c44b96bc1f724d2252bde8.zip |
Operation - Parcels - Modify: ManagementForm Issue part two #5227
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) |