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 @@ -547,11 +547,11 @@ def maybe_skip_test(self, spec):
547547 self .skipTest ("PYTHON-3522 CSOT GridFS test runs too slow on Windows" )
548548 if sys .platform == "win32" :
549549 for pat in slow_win32 :
550- if re .match (pat , description .lower ()):
550+ if re .match (pat .lower (), description ):
551551 self .skipTest ("PYTHON-3522 CSOT test runs too slow on Windows" )
552552 if sys .platform == "darwin" :
553553 for pat in slow_macos :
554- if re .match (pat , description .lower ()):
554+ if re .match (pat .lower (), description ):
555555 self .skipTest ("PYTHON-3522 CSOT test runs too slow on MacOS" )
556556 if async_client_context .storage_engine == "mmapv1" :
557557 self .skipTest (
Original file line number Diff line number Diff line change @@ -546,11 +546,11 @@ def maybe_skip_test(self, spec):
546546 self .skipTest ("PYTHON-3522 CSOT GridFS test runs too slow on Windows" )
547547 if sys .platform == "win32" :
548548 for pat in slow_win32 :
549- if re .match (pat , description .lower ()):
549+ if re .match (pat .lower (), description ):
550550 self .skipTest ("PYTHON-3522 CSOT test runs too slow on Windows" )
551551 if sys .platform == "darwin" :
552552 for pat in slow_macos :
553- if re .match (pat , description .lower ()):
553+ if re .match (pat .lower (), description ):
554554 self .skipTest ("PYTHON-3522 CSOT test runs too slow on MacOS" )
555555 if client_context .storage_engine == "mmapv1" :
556556 self .skipTest (
You can’t perform that action at this time.
0 commit comments