From b0c253d134d3d1761cd359da378d70267a98086a Mon Sep 17 00:00:00 2001 From: Aya Hassan Date: Tue, 12 May 2026 20:06:49 +0200 Subject: [PATCH] use skip instead of xfail --- tests/wrappers_tests/test_send_e2e_part3.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/wrappers_tests/test_send_e2e_part3.py b/tests/wrappers_tests/test_send_e2e_part3.py index 0639c5fdd..2a6ff0100 100644 --- a/tests/wrappers_tests/test_send_e2e_part3.py +++ b/tests/wrappers_tests/test_send_e2e_part3.py @@ -174,7 +174,7 @@ _SEND_AFTER_DESTROY_SUBPROCESS_SCRIPT = textwrap.dedent( class TestS01NilOrUninitializedHandle(StepsCommon): """S01 — send() on a nil/destroyed handle must Err, no events, no crash.""" - @pytest.mark.xfail(reason="see https://github.com/logos-messaging/logos-delivery/issues/3863") + @pytest.mark.skip(reason="see https://github.com/logos-messaging/logos-delivery/issues/3863") def test_s01_send_on_uninitialized_handle(self): completed = subprocess.run( [sys.executable, "-c", _S01_SUBPROCESS_SCRIPT], @@ -200,7 +200,7 @@ class TestS01NilOrUninitializedHandle(StepsCommon): result["err"] or "" ), f"expected error to mention {S01_EXPECTED_ERROR_FRAGMENT!r}, got: {result['err']!r}" - @pytest.mark.xfail(reason="see https://github.com/logos-messaging/logos-delivery/issues/3863") + @pytest.mark.skip(reason="see https://github.com/logos-messaging/logos-delivery/issues/3863") def test_s01_send_on_destroyed_handle(self): completed = subprocess.run( [sys.executable, "-c", _SEND_AFTER_DESTROY_SUBPROCESS_SCRIPT],