Skip to content

Commit 85bc62d

Browse files
committed
fix skip
1 parent c36dd26 commit 85bc62d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

test/asynchronous/unified_format.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -536,14 +536,14 @@ def maybe_skip_test(self, spec):
536536
# Skip tests that are too slow to run on a given platform.
537537
slow_win32 = [
538538
"maxtimems value in the command is less than maxtimems",
539-
"non-tailable cursor lifetime remaining maxtimems applied to getmore if timeoutmode is unset",
539+
"non-tailable cursor lifetime remaining timeoutms applied to getMore if timeoutmode is unset",
540540
"maxtimems applied to update during a rename",
541541
"maxtimems applied to find to get chunks",
542542
"maxtimems applied to find to get files document",
543543
"maxtimems applied to find command",
544544
]
545545
slow_macos = [
546-
"non-tailable cursor lifetime remaining maxtimems applied to getmore if timeoutmode is unset"
546+
"non-tailable cursor lifetime remaining timeoutms applied to getMore if timeoutode is unset"
547547
]
548548
if sys.platform == "win32" and description in slow_win32:
549549
self.skipTest("PYTHON-3522 CSOT test run too slow on Windows")

test/unified_format.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -535,14 +535,14 @@ def maybe_skip_test(self, spec):
535535
# Skip tests that are too slow to run on a given platform.
536536
slow_win32 = [
537537
"maxtimems value in the command is less than maxtimems",
538-
"non-tailable cursor lifetime remaining maxtimems applied to getmore if timeoutmode is unset",
538+
"non-tailable cursor lifetime remaining timeoutms applied to getMore if timeoutmode is unset",
539539
"maxtimems applied to update during a rename",
540540
"maxtimems applied to find to get chunks",
541541
"maxtimems applied to find to get files document",
542542
"maxtimems applied to find command",
543543
]
544544
slow_macos = [
545-
"non-tailable cursor lifetime remaining maxtimems applied to getmore if timeoutmode is unset"
545+
"non-tailable cursor lifetime remaining timeoutms applied to getMore if timeoutode is unset"
546546
]
547547
if sys.platform == "win32" and description in slow_win32:
548548
self.skipTest("PYTHON-3522 CSOT test run too slow on Windows")

0 commit comments

Comments
 (0)