Browse Source

Make tests pass after change 9b37e93f7769e0bc3a0c792bcb097833391f30b4.

Ask Solem 15 years ago
parent
commit
99bbdc110f
1 changed files with 2 additions and 1 deletions
  1. 2 1
      celery/tests/test_worker_control.py

+ 2 - 1
celery/tests/test_worker_control.py

@@ -9,10 +9,11 @@ from celery.registry import tasks
 
 hostname = socket.gethostname()
 
+
 class TestControlPanel(unittest.TestCase):
 
     def setUp(self):
-        self.panel = self.create_panel()
+        self.panel = self.create_panel(listener=object())
 
     def create_panel(self, **kwargs):
         return control.ControlDispatch(hostname=hostname, **kwargs)