From f30e5963497325c9312aa2d6e401d60bb18c98ea Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Sat, 7 Sep 2024 10:00:12 -0500 Subject: [PATCH] PYTHON-4182 Unskip test_unpin_after_TransientTransactionError_error_on_abort on latest --- test/unified_format.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/test/unified_format.py b/test/unified_format.py index 168d35ee1f..63cd23af88 100644 --- a/test/unified_format.py +++ b/test/unified_format.py @@ -1170,9 +1170,6 @@ def maybe_skip_test(self, spec): self.skipTest("Implement PYTHON-1894") if "timeoutMS applied to entire download" in spec["description"]: self.skipTest("PyMongo's open_download_stream does not cap the stream's lifetime") - if "unpin after non-transient error on abort" in spec["description"]: - if client_context.version[0] == 8: - self.skipTest("Skipping TransientTransactionError pending PYTHON-4182") class_name = self.__class__.__name__.lower() description = spec["description"].lower()