Skip to content

Commit e99f46c

Browse files
committed
PYTHON-5441 - Unskip gridfs download chunk tests
1 parent 59d94f3 commit e99f46c

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

test/asynchronous/unified_format.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -982,13 +982,9 @@ async def run_entity_operation(self, spec):
982982
if ignore and isinstance(exc, (PyMongoError,)):
983983
return exc
984984
if expect_error:
985-
if method_name == "_collectionOperation_bulkWrite":
986-
self.skipTest("Skipping test pending PYTHON-4598")
987985
return self.process_error(exc, expect_error)
988986
raise
989987
else:
990-
if method_name == "_collectionOperation_bulkWrite":
991-
self.skipTest("Skipping test pending PYTHON-4598")
992988
if expect_error:
993989
self.fail(f'Excepted error {expect_error} but "{opname}" succeeded: {result}')
994990

test/unified_format.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -973,13 +973,9 @@ def run_entity_operation(self, spec):
973973
if ignore and isinstance(exc, (PyMongoError,)):
974974
return exc
975975
if expect_error:
976-
if method_name == "_collectionOperation_bulkWrite":
977-
self.skipTest("Skipping test pending PYTHON-4598")
978976
return self.process_error(exc, expect_error)
979977
raise
980978
else:
981-
if method_name == "_collectionOperation_bulkWrite":
982-
self.skipTest("Skipping test pending PYTHON-4598")
983979
if expect_error:
984980
self.fail(f'Excepted error {expect_error} but "{opname}" succeeded: {result}')
985981

0 commit comments

Comments
 (0)