Browse Source

Fixed build

Rafał Pitoń 10 years ago
parent
commit
d2194ad8cc
1 changed files with 5 additions and 0 deletions
  1. 5 0
      misago/threads/tests/test_forumthreads_view.py

+ 5 - 0
misago/threads/tests/test_forumthreads_view.py

@@ -64,10 +64,12 @@ class ActionsTests(ForumViewHelperTestCase):
         self.assertEqual(actions.available_actions, [
             {
                 'action': 'pin',
+                'icon': 'bookmark',
                 'name': _("Change to pinned")
             },
             {
                 'action': 'reset',
+                'icon': 'circle',
                 'name': _("Reset weight")
             },
         ])
@@ -80,14 +82,17 @@ class ActionsTests(ForumViewHelperTestCase):
         self.assertEqual(actions.available_actions, [
             {
                 'action': 'announce',
+                'icon': 'star',
                 'name': _("Change to announcements")
             },
             {
                 'action': 'pin',
+                'icon': 'bookmark',
                 'name': _("Change to pinned")
             },
             {
                 'action': 'reset',
+                'icon': 'circle',
                 'name': _("Reset weight")
             },
         ])