summaryrefslogtreecommitdiff
path: root/ishtar_common/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar_common/tests.py')
-rw-r--r--ishtar_common/tests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/ishtar_common/tests.py b/ishtar_common/tests.py
index 4afc74c9b..ad83b4a87 100644
--- a/ishtar_common/tests.py
+++ b/ishtar_common/tests.py
@@ -95,7 +95,8 @@ class CommandsTestCase(TestCase):
"""
from archaeological_operations.models import Parcel
p = Parcel.objects.create(
- town=models.Town.objects.create(name='test', numero_insee='25000'))
+ town=models.Town.objects.create(name='test', numero_insee='25000'),
+ )
parcel_nb = Parcel.objects.count()
out = StringIO()
call_command('clean_ishtar', stdout=out)