Skip to content

Commit 1eb5cf7

Browse files
committed
One more test cleanup.
1 parent 118ab45 commit 1eb5cf7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/test_pooling.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,9 @@ def test_pool_with_fork(self):
113113
raise SkipTest("No multiprocessing module")
114114

115115
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()
116+
a.pymongo_test.test.remove(safe=True)
117+
a.pymongo_test.test.insert({'_id':1}, safe=True)
118+
a.pymongo_test.test.find_one()
119119
self.assertEqual(1, len(a._MongoClient__pool.sockets))
120120
a_sock = one(a._MongoClient__pool.sockets)
121121

0 commit comments

Comments
 (0)