Skip to content

Commit 35a3300

Browse files
committed
fix skips
1 parent 85bc62d commit 35a3300

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
@@ -535,15 +535,15 @@ def maybe_skip_test(self, spec):
535535
if "csot" in class_name:
536536
# Skip tests that are too slow to run on a given platform.
537537
slow_win32 = [
538-
"maxtimems value in the command is less than maxtimems",
538+
"maxtimems value in the command is less than timeoutms",
539539
"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 timeoutms applied to getMore if timeoutode is unset"
546+
"non-tailable cursor lifetime remaining timeoutms applied to getMore if timeoutmode 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
@@ -534,15 +534,15 @@ def maybe_skip_test(self, spec):
534534
if "csot" in class_name:
535535
# Skip tests that are too slow to run on a given platform.
536536
slow_win32 = [
537-
"maxtimems value in the command is less than maxtimems",
537+
"maxtimems value in the command is less than timeoutms",
538538
"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 timeoutms applied to getMore if timeoutode is unset"
545+
"non-tailable cursor lifetime remaining timeoutms applied to getMore if timeoutmode 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)