From 51396c70caee85deab57d2aae846c20a983b88b0 2013-12-28 06:32:00 From: MinRK Date: 2013-12-28 06:32:00 Subject: [PATCH] fix typo in PR #4744 --- diff --git a/IPython/parallel/tests/test_client.py b/IPython/parallel/tests/test_client.py index 696c206..c8ebef6 100644 --- a/IPython/parallel/tests/test_client.py +++ b/IPython/parallel/tests/test_client.py @@ -333,7 +333,7 @@ class TestClient(ClusterTestCase): # ensure Hub up to date: self.assertEqual(qs['unassigned'], 0) - for eid in qs if eid != 'unassigned': + for eid in [ eid for eid in qs if eid != 'unassigned' ]: self.assertEqual(qs[eid]['tasks'], 0) self.assertEqual(qs[eid]['queue'], 0)