diff options
| -rw-r--r-- | ishtar_common/tests.py | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/ishtar_common/tests.py b/ishtar_common/tests.py index 9c7beb28a..5fbc8b875 100644 --- a/ishtar_common/tests.py +++ b/ishtar_common/tests.py @@ -727,6 +727,8 @@ class SerializationTest(GenericSerializationTest, TestCase):              numero_insee="12346", departement=d          )          t2.children.add(t1) +        a = models.Area.objects.create(label="Test", txt_idx='test') +        a.towns.add(t1)      def test_geo_serialization(self):          self.create_geo_default() | 
