(collection, _)
| 2442 | |
| 2443 | # Update doc 10 times. |
| 2444 | def update_one(collection, _): |
| 2445 | collection.update_one({}, {"$inc": {"i": 1}}) |
| 2446 | |
| 2447 | def test(collection): |
| 2448 | self.assertEqual(NTHREADS, collection.find_one()["i"]) |
no outgoing calls
no test coverage detected