summaryrefslogtreecommitdiff
path: root/dev-python/celery/files/celery-3.1.19-test.patch
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2015-10-27 09:36:14 +0100
committerJustin Lecher <jlec@gentoo.org>2015-10-27 10:04:04 +0100
commit2c1d645b9505fed87d022714d1f1831d6a2ae47f (patch)
treecb49ccfe0082123edf22cdb568499e377e6e6350 /dev-python/celery/files/celery-3.1.19-test.patch
parent366712b7e4b46de62d03cbe6237cbea771a10bbe (diff)
downloadgentoo-2c1d645b9505fed87d022714d1f1831d6a2ae47f.tar.gz
gentoo-2c1d645b9505fed87d022714d1f1831d6a2ae47f.tar.bz2
gentoo-2c1d645b9505fed87d022714d1f1831d6a2ae47f.zip
dev-python/celery: Version Bump
Package-Manager: portage-2.2.23 Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'dev-python/celery/files/celery-3.1.19-test.patch')
-rw-r--r--dev-python/celery/files/celery-3.1.19-test.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/dev-python/celery/files/celery-3.1.19-test.patch b/dev-python/celery/files/celery-3.1.19-test.patch
new file mode 100644
index 000000000000..25b41456a0ce
--- /dev/null
+++ b/dev-python/celery/files/celery-3.1.19-test.patch
@@ -0,0 +1,16 @@
+https://github.com/celery/celery/commit/fb48b1f357f7a416d1413d0056158a74191185af.diff
+diff --git a/celery/tests/backends/test_mongodb.py b/celery/tests/backends/test_mongodb.py
+index f7546d3..a32d9ed 100644
+--- a/celery/tests/backends/test_mongodb.py
++++ b/celery/tests/backends/test_mongodb.py
+@@ -253,8 +253,8 @@ def test_restore_group(self, mock_get_database):
+ mock_collection.find_one.assert_called_once_with(
+ {'_id': sentinel.taskset_id})
+ self.assertItemsEqual(
+- ['date_done', 'result', 'task_id'],
+- list(ret_val.keys()),
++ list(sorted(['date_done', 'result', 'task_id'])),
++ list(sorted(ret_val.keys())),
+ )
+
+ @patch('celery.backends.mongodb.MongoBackend._get_database')