X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/239fd9a073f8af8ca67aa050e8a34a843e53e0c2..f3729c4c853ef396de8d6bbd75210bfbacffa8b6:/apps/catalogue/tests/gallery.py

diff --git a/apps/catalogue/tests/gallery.py b/apps/catalogue/tests/gallery.py
index ad0dfd7d..4b8ea3f4 100644
--- a/apps/catalogue/tests/gallery.py
+++ b/apps/catalogue/tests/gallery.py
@@ -19,7 +19,7 @@ class GalleryAppendTests(TestCase):
         self.user = User.objects.create(username='tester')
         self.book1 = Book.create(self.user, 'book 1', slug='book1')
         self.book1.chunk_set.create(number=2, title='Second chunk',
-                slug='book 1 / 2')
+                slug='book1-2')
         c=self.book1[1]
         c.gallery_start=3
         
@@ -39,7 +39,7 @@ class GalleryAppendTests(TestCase):
     def test_both_indexed(self):
         self.book2 = Book.create(self.user, 'book 2', slug='book2')
         self.book2.chunk_set.create(number=2, title='Second chunk of second book',
-                slug='book 2 / 2')
+                slug='book2-2')
 
         c = self.book2[1]
         c.gallery_start = 3