Skip to content

Commit cbfdb2d

Browse files
committed
fix skip condition
1 parent 15ffcea commit cbfdb2d

File tree

3 files changed

+63
-45
lines changed

3 files changed

+63
-45
lines changed

test/asynchronous/unified_format.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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

test/unified_format.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)