There was an error while loading. Please reload this page.
1 parent 118ab45 commit 1eb5cf7Copy full SHA for 1eb5cf7
test/test_pooling.py
@@ -113,9 +113,9 @@ def test_pool_with_fork(self):
113
raise SkipTest("No multiprocessing module")
114
115
a = self.get_connection(auto_start_request=False)
116
- a.test.test.remove(safe=True)
117
- a.test.test.insert({'_id':1}, safe=True)
118
- a.test.test.find_one()
+ a.pymongo_test.test.remove(safe=True)
+ a.pymongo_test.test.insert({'_id':1}, safe=True)
+ a.pymongo_test.test.find_one()
119
self.assertEqual(1, len(a._MongoClient__pool.sockets))
120
a_sock = one(a._MongoClient__pool.sockets)
121
0 commit comments