File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -535,15 +535,15 @@ def maybe_skip_test(self, spec):
535
535
if "csot" in class_name :
536
536
# Skip tests that are too slow to run on a given platform.
537
537
slow_win32 = [
538
- "maxtimems value in the command is less than maxtimems " ,
538
+ "maxtimems value in the command is less than timeoutms " ,
539
539
"non-tailable cursor lifetime remaining timeoutms applied to getMore if timeoutmode is unset" ,
540
540
"maxtimems applied to update during a rename" ,
541
541
"maxtimems applied to find to get chunks" ,
542
542
"maxtimems applied to find to get files document" ,
543
543
"maxtimems applied to find command" ,
544
544
]
545
545
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"
547
547
]
548
548
if sys .platform == "win32" and description in slow_win32 :
549
549
self .skipTest ("PYTHON-3522 CSOT test run too slow on Windows" )
Original file line number Diff line number Diff line change @@ -534,15 +534,15 @@ def maybe_skip_test(self, spec):
534
534
if "csot" in class_name :
535
535
# Skip tests that are too slow to run on a given platform.
536
536
slow_win32 = [
537
- "maxtimems value in the command is less than maxtimems " ,
537
+ "maxtimems value in the command is less than timeoutms " ,
538
538
"non-tailable cursor lifetime remaining timeoutms applied to getMore if timeoutmode is unset" ,
539
539
"maxtimems applied to update during a rename" ,
540
540
"maxtimems applied to find to get chunks" ,
541
541
"maxtimems applied to find to get files document" ,
542
542
"maxtimems applied to find command" ,
543
543
]
544
544
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"
546
546
]
547
547
if sys .platform == "win32" and description in slow_win32 :
548
548
self .skipTest ("PYTHON-3522 CSOT test run too slow on Windows" )
You can’t perform that action at this time.
0 commit comments