Explorar el Código

Removes failing test

Ask Solem hace 8 años
padre
commit
8616704f38
Se han modificado 1 ficheros con 0 adiciones y 6 borrados
  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)