File tree Expand file tree Collapse file tree 3 files changed +63
-45
lines changed Expand file tree Collapse file tree 3 files changed +63
-45
lines changed Original file line number Diff line number Diff line change @@ -556,11 +556,12 @@ def maybe_skip_test(self, spec):
556556 # add any special-casing for skipping tests here
557557 class_name = self .__class__ .__name__ .lower ()
558558 description = spec ["description" ].lower ()
559- if "Client side error in command starting transaction" in description :
559+
560+ if "client side error in command starting transaction" in description :
560561 self .skipTest ("Implement PYTHON-1894" )
561562 if "type=symbol" in description :
562563 self .skipTest ("PyMongo does not support the symbol type" )
563- if "timeoutMS applied to entire download" in description :
564+ if "timeoutms applied to entire download" in description :
564565 self .skipTest ("PyMongo's open_download_stream does not cap the stream's lifetime" )
565566 if any (
566567 x in description
Original file line number Diff line number Diff line change @@ -555,11 +555,12 @@ def maybe_skip_test(self, spec):
555555 # add any special-casing for skipping tests here
556556 class_name = self .__class__ .__name__ .lower ()
557557 description = spec ["description" ].lower ()
558- if "Client side error in command starting transaction" in description :
558+
559+ if "client side error in command starting transaction" in description :
559560 self .skipTest ("Implement PYTHON-1894" )
560561 if "type=symbol" in description :
561562 self .skipTest ("PyMongo does not support the symbol type" )
562- if "timeoutMS applied to entire download" in description :
563+ if "timeoutms applied to entire download" in description :
563564 self .skipTest ("PyMongo's open_download_stream does not cap the stream's lifetime" )
564565 if any (
565566 x in description
You can’t perform that action at this time.
0 commit comments