Minor fixes in picture publishing process.
[wolnelektury.git] / apps / picture / tests / picture_import.py
index 1b01d33..1e17289 100644 (file)
@@ -18,10 +18,10 @@ class PictureTest(WLTestCase):
         for area in picture.areas.all():
             themes.update([(tag.category, tag.name)
                 for tag in area.tags if tag.category in (u'theme', u'thing')])
-        assert themes == set([(u'theme', u'nieporządek'), (u'thing', u'kosmos')]), \
+        assert themes == set([(u'theme', u'nieporządek'), (u'thing', u'Kosmos')]), \
             'Bad themes on Picture areas: %s' % themes
 
-        pic_themes = set([tag.name for tag in picture.tags if tag.category in ('theme', 'object')])
+        pic_themes = set([tag.name for tag in picture.tags if tag.category in ('theme', 'thing')])
         assert not pic_themes, 'Unwanted themes set on Pictures: %s' % pic_themes
 
         picture.delete()