Skip to content

Commit

Permalink
fix typo in PR #4744
Browse files Browse the repository at this point in the history
  • Loading branch information
minrk committed Dec 28, 2013
1 parent 1faf2f6 commit 51396c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion IPython/parallel/tests/test_client.py
Expand Up @@ -333,7 +333,7 @@ def _wait_for_idle(self):

# 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)

Expand Down

0 comments on commit 51396c7

Please sign in to comment.