Fixes broken ConnectionPool test

This commit is contained in:
Ask Solem 2011-09-01 14:50:57 +01:00
parent 396b90e0a9
commit 87cb3dfa2f
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ class test_ConnectionPool(ResourceCase):
q = P._resource.queue
self.assertIsNotNone(q[0]._connection)
self.assertIsNotNone(q[1]._connection)
self.assertIsNone(q[2]._connection)
self.assertIsNone(q[2]()._connection)
class test_ChannelPool(ResourceCase):