Skip to content

Commit 994a8df

Browse files
committed
fix skip condition
1 parent 52d0149 commit 994a8df

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

test/asynchronous/unified_format.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -566,9 +566,9 @@ def maybe_skip_test(self, spec):
566566
if any(
567567
x in description
568568
for x in [
569-
"First insertOne is never committed",
570-
"Second updateOne is never committed",
571-
"Third updateOne is never committed",
569+
"first insertone is never committed",
570+
"second updateone is never committed",
571+
"third updateone is never committed",
572572
]
573573
):
574574
self.skipTest("Implement PYTHON-4597")

test/unified_format.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -565,9 +565,9 @@ def maybe_skip_test(self, spec):
565565
if any(
566566
x in description
567567
for x in [
568-
"First insertOne is never committed",
569-
"Second updateOne is never committed",
570-
"Third updateOne is never committed",
568+
"first insertone is never committed",
569+
"second updateone is never committed",
570+
"third updateone is never committed",
571571
]
572572
):
573573
self.skipTest("Implement PYTHON-4597")

0 commit comments

Comments
 (0)