瀏覽代碼

Removes failing test

Ask Solem 8 年之前
父節點
當前提交
8616704f38
共有 1 個文件被更改,包括 0 次插入6 次删除
  1. 0 6
      celery/tests/app/test_builtins.py

+ 0 - 6
celery/tests/app/test_builtins.py

@@ -215,9 +215,3 @@ class test_chord(BuiltinsCase):
         x = chord([self.add.s(i, i) for i in range(10)], body=self.xsum.s())
         r = x.apply_async()
         self.assertEqual(r.get(), 90)
-
-    def test_apply_eager_with_arguments(self):
-        self.app.conf.CELERY_ALWAYS_EAGER = True
-        x = chord([self.add.s(i) for i in range(10)], body=self.xsum.s())
-        r = x.apply_async([1])
-        self.assertEqual(r.get(), 55)