summaryrefslogtreecommitdiff
path: root/archaeological_operations/tests.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2017-02-25 12:45:06 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2017-02-25 12:45:06 +0100
commit513aceb9241806f7350ec7fc1ac49d3b75bc953a (patch)
tree724f9865add02df41e6e70f67642cc7eb421e044 /archaeological_operations/tests.py
parentcdb5af349c931fa12ccf642cf2080aa117dc4a1f (diff)
downloadIshtar-513aceb9241806f7350ec7fc1ac49d3b75bc953a.tar.bz2
Ishtar-513aceb9241806f7350ec7fc1ac49d3b75bc953a.zip
Operations: fix bulk update of context records (refs #3472)
Diffstat (limited to 'archaeological_operations/tests.py')
-rw-r--r--archaeological_operations/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_operations/tests.py b/archaeological_operations/tests.py
index f0d07c33c..18548b0b1 100644
--- a/archaeological_operations/tests.py
+++ b/archaeological_operations/tests.py
@@ -811,7 +811,7 @@ class OperationTest(TestCase, OperationInitTest):
operation.save()
cr = ContextRecord.objects.get(pk=cr.pk)
ope_id, parcel_sec, parcel_nb, cr_label = cr.cached_label.split(' | ')
- self.assertEqual(ope_id, '666'.format(settings.ISHTAR_OPE_PREFIX))
+ self.assertEqual(ope_id, '{}666'.format(settings.ISHTAR_OPE_PREFIX))
class OperationSearchTest(TestCase, OperationInitTest):