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