diff options
Diffstat (limited to 'archaeological_operations/tests.py')
| -rw-r--r-- | archaeological_operations/tests.py | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/archaeological_operations/tests.py b/archaeological_operations/tests.py index 166e535ca..947be204e 100644 --- a/archaeological_operations/tests.py +++ b/archaeological_operations/tests.py @@ -1489,7 +1489,10 @@ class RegisterTest(TestCase, OperationInitTest):                  self.assertIsNone(z.testzip())                  c = z.open('content.xml')                  content = c.read() -                self.assertIn('{{ adminact_operator_id }}', content) +                self.assertIn( +                    '{{ adminact_associated_file_in_charge_parcel_owner }}', +                    content +                )              finally:                  c.close()                  z.close() | 
