PYTHON-5114 Fix comment

This commit is contained in:
Shane Harvey 2026-03-05 10:06:40 -08:00
parent c2052a9978
commit 8f238421e0
4 changed files with 4 additions and 4 deletions

View File

@ -1499,7 +1499,7 @@ class UnifiedSpecTestMixinV1(AsyncIntegrationTest):
if skip_reason is not None:
raise unittest.SkipTest(f"{skip_reason}")
# Kill all sessions after each test with transactions prevent an open
# Kill all sessions after each test with transactions to prevent an open
# transaction (from a test failure) from blocking collection/database
# operations during test set up and tear down.
for op in spec["operations"]:

View File

@ -621,7 +621,7 @@ class AsyncSpecRunner(AsyncIntegrationTest):
async def run_scenario(self, scenario_def, test):
self.maybe_skip_scenario(test)
# Kill all sessions after each test with transactions prevent an open
# Kill all sessions after each test with transactions to prevent an open
# transaction (from a test failure) from blocking collection/database
# operations during test set up and tear down.
for op in test["operations"]:

View File

@ -1486,7 +1486,7 @@ class UnifiedSpecTestMixinV1(IntegrationTest):
if skip_reason is not None:
raise unittest.SkipTest(f"{skip_reason}")
# Kill all sessions after each test with transactions prevent an open
# Kill all sessions after each test with transactions to prevent an open
# transaction (from a test failure) from blocking collection/database
# operations during test set up and tear down.
for op in spec["operations"]:

View File

@ -621,7 +621,7 @@ class SpecRunner(IntegrationTest):
def run_scenario(self, scenario_def, test):
self.maybe_skip_scenario(test)
# Kill all sessions after each test with transactions prevent an open
# Kill all sessions after each test with transactions to prevent an open
# transaction (from a test failure) from blocking collection/database
# operations during test set up and tear down.
for op in test["operations"]: