From f6a418f590de8e3e0a8d12dbd092bc5cd09e85fa Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Mon, 9 Sep 2024 09:44:03 -0500 Subject: [PATCH] PYTHON-4182 Unskip test_unpin_after_TransientTransactionError_error_on_abort on latest (#1847) --- test/unified_format.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/test/unified_format.py b/test/unified_format.py index 168d35ee1..63cd23af8 100644 --- a/test/unified_format.py +++ b/test/unified_format.py @@ -1170,9 +1170,6 @@ class UnifiedSpecTestMixinV1(IntegrationTest): 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()