Skip to content

Commit 0b60462

Browse files
committed
loosen bound
1 parent a8d9e88 commit 0b60462

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/asynchronous/test_cursor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ async def test_explain_csot(self):
378378
# Obtain the command started event for the explain. Confirm that the top-level explain command should has a maxTimeMS value of 2000.
379379
started = listener.started_events
380380
self.assertEqual(len(started), 1)
381-
assert 1900 < started[0].command["maxTimeMS"] <= 2000
381+
assert 1500 < started[0].command["maxTimeMS"] <= 2000
382382

383383
async def test_hint(self):
384384
db = self.db

test/test_cursor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ def test_explain_csot(self):
370370
# Obtain the command started event for the explain. Confirm that the top-level explain command should has a maxTimeMS value of 2000.
371371
started = listener.started_events
372372
self.assertEqual(len(started), 1)
373-
assert 1900 < started[0].command["maxTimeMS"] <= 2000
373+
assert 1500 < started[0].command["maxTimeMS"] <= 2000
374374

375375
def test_hint(self):
376376
db = self.db

0 commit comments

Comments
 (0)