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.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ishtar_common/tests.py b/ishtar_common/tests.py
index 7c8b2fd5c..a46a81070 100644
--- a/ishtar_common/tests.py
+++ b/ishtar_common/tests.py
@@ -1136,11 +1136,11 @@ class IshtarBasicTest(TestCase):
c.login(username=self.my_admin.username, password=self.password)
response = c.get(reverse('show-person', kwargs={'pk': person.pk}))
self.assertEqual(response.status_code, 200)
- self.assertIn('class="sheet"', response.content)
+ self.assertIn('class="card sheet"', response.content)
response = c.get(reverse('show-organization',
kwargs={'pk': company.pk}))
self.assertEqual(response.status_code, 200)
- self.assertIn('class="sheet"', response.content)
+ self.assertIn('class="card sheet"', response.content)
def test_town_cache(self):
models.Town.objects.create(name="Sin City", numero_insee="99999")