summaryrefslogtreecommitdiff
path: root/dev-python/celery/files/celery-3.1.10-test.patch
diff options
context:
space:
mode:
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>2016-09-09 19:13:10 +0200
committerDavid Seifert <soap@gentoo.org>2016-09-11 10:48:26 +0200
commitbbfce498c1141915e43823a60bfc7c5b8afc0424 (patch)
treebd6611485b476fe0f4afc72387b552cac57aa1e5 /dev-python/celery/files/celery-3.1.10-test.patch
parent1f22cb5fa6ebc7b30e487d78dd350b74073867aa (diff)
downloadgentoo-bbfce498c1141915e43823a60bfc7c5b8afc0424.tar.gz
gentoo-bbfce498c1141915e43823a60bfc7c5b8afc0424.tar.bz2
gentoo-bbfce498c1141915e43823a60bfc7c5b8afc0424.zip
dev-python/celery: remove unused patches
Closes: https://github.com/gentoo/gentoo/pull/2291 Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-python/celery/files/celery-3.1.10-test.patch')
-rw-r--r--dev-python/celery/files/celery-3.1.10-test.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/dev-python/celery/files/celery-3.1.10-test.patch b/dev-python/celery/files/celery-3.1.10-test.patch
deleted file mode 100644
index 94fcac92fbf3..000000000000
--- a/dev-python/celery/files/celery-3.1.10-test.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-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
-@@ -196,9 +196,10 @@ def test_get_task_meta_for(self, mock_get_database):
- mock_get_database.assert_called_once_with()
- mock_database.__getitem__.assert_called_once_with(MONGODB_COLLECTION)
- self.assertEqual(
-- ['status', 'task_id', 'date_done', 'traceback', 'result',
-- 'children'],
-- list(ret_val.keys()))
-+ list(sorted(['status', 'task_id', 'date_done', 'traceback',
-+ 'result', 'children'])),
-+ list(sorted(ret_val.keys())),
-+ )
-
- @patch('celery.backends.mongodb.MongoBackend._get_database')
- def test_get_task_meta_for_no_result(self, mock_get_database):
-@@ -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.assertEqual(
-- ['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')
-#diff -ur celery-3.1.10.orig/celery/tests/backends/test_mongodb.py celery-3.1.10/celery/tests/backends/test_mongodb.py
-#--- celery-3.1.10.orig/celery/tests/backends/test_mongodb.py 2014-02-28 21:43:26.000000000 +0800
-#+++ celery-3.1.10/celery/tests/backends/test_mongodb.py 2014-04-17 11:43:00.818430253 +0800