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 @@ -568,8 +568,8 @@ async def test_returns_error_if_auto_encryption_configured(self):
568
568
# https://github.com/mongodb/specifications/blob/master/source/client-side-operations-timeout/tests/README.md#11-multi-batch-bulkwrites
569
569
class TestClientBulkWriteCSOT (AsyncIntegrationTest ):
570
570
async def asyncSetUp (self ):
571
- # if os.environ.get("SKIP_CSOT_TESTS", ""):
572
- # raise unittest.SkipTest("SKIP_CSOT_TESTS is set, skipping...")
571
+ if os .environ .get ("SKIP_CSOT_TESTS" , "" ):
572
+ raise unittest .SkipTest ("SKIP_CSOT_TESTS is set, skipping..." )
573
573
self .max_write_batch_size = await async_client_context .max_write_batch_size
574
574
self .max_bson_object_size = await async_client_context .max_bson_size
575
575
self .max_message_size_bytes = await async_client_context .max_message_size_bytes
Original file line number Diff line number Diff line change @@ -568,8 +568,8 @@ def test_returns_error_if_auto_encryption_configured(self):
568
568
# https://github.com/mongodb/specifications/blob/master/source/client-side-operations-timeout/tests/README.md#11-multi-batch-bulkwrites
569
569
class TestClientBulkWriteCSOT (IntegrationTest ):
570
570
def setUp (self ):
571
- # if os.environ.get("SKIP_CSOT_TESTS", ""):
572
- # raise unittest.SkipTest("SKIP_CSOT_TESTS is set, skipping...")
571
+ if os .environ .get ("SKIP_CSOT_TESTS" , "" ):
572
+ raise unittest .SkipTest ("SKIP_CSOT_TESTS is set, skipping..." )
573
573
self .max_write_batch_size = client_context .max_write_batch_size
574
574
self .max_bson_object_size = client_context .max_bson_size
575
575
self .max_message_size_bytes = client_context .max_message_size_bytes
You can’t perform that action at this time.
0 commit comments