Browse Source

Tests passing on Py2.6

Ask Solem 11 years ago
parent
commit
3ec94b8225
1 changed files with 1 additions and 1 deletions
  1. 1 1
      celery/tests/worker/test_worker.py

+ 1 - 1
celery/tests/worker/test_worker.py

@@ -640,7 +640,7 @@ class test_Consumer(AppCase):
         def effect():
             if connect.call_count > 1:
                 return
-            raise ChannelError()
+            raise ChannelError('error')
         connect.side_effect = effect
         l.connect()
         connect.assert_called_with()