Skip to content

Commit c3963a4

Browse files
committed
fix call
1 parent 86bfcd0 commit c3963a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/asynchronous/test_cursor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ async def test_explain_csot(self):
374374
if "collection" not in names:
375375
collection = await client["explain-test"].create_collection("collection")
376376
else:
377-
collection = client["explain-test"]["collection"]
377+
collection = await client["explain-test"]["collection"]
378378

379379
# Run an explained find on collection. The find will have the query predicate { name: 'john doe' }. Specify a maxTimeMS value of 2000ms for the explain.
380380
with pymongo.timeout(2.0):

0 commit comments

Comments
 (0)