Browse Source

Make bulk delete test pass

Rafał Pitoń 7 years ago
parent
commit
380c96a112
1 changed files with 1 additions and 1 deletions
  1. 1 1
      misago/threads/tests/test_threads_bulkdelete_api.py

+ 1 - 1
misago/threads/tests/test_threads_bulkdelete_api.py

@@ -179,7 +179,7 @@ class ThreadsBulkDeleteApiTests(ThreadsApiTestCase):
                             'title': thread.title,
                         },
                         'error': "This category is closed. You can't delete threads in it.",
-                    } for thread in self.threads
+                    } for thread in reversed(self.threads)
                 ],
             },
         })