diff options
Diffstat (limited to 'archaeological_finds/tests.py')
-rw-r--r-- | archaeological_finds/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_finds/tests.py b/archaeological_finds/tests.py index 5a7e53849..e7b520fb6 100644 --- a/archaeological_finds/tests.py +++ b/archaeological_finds/tests.py @@ -1148,7 +1148,7 @@ class FindTest(FindInit, TestCase): cr.operation.save() base_find = models.BaseFind.objects.get(pk=base_find.pk) find = models.Find.objects.get(pk=find.pk) - cr = ContextRecord.objects.get(pk=cr.pk) + ContextRecord.objects.get(pk=cr.pk) self.assertIn("PAT", find.external_id) self.assertIn("PAT", base_find.external_id) |