diff --git a/tests/vector/test_shared_memory.py b/tests/vector/test_shared_memory.py index c13ffe3a129..94d11cde899 100644 --- a/tests/vector/test_shared_memory.py +++ b/tests/vector/test_shared_memory.py @@ -95,9 +95,8 @@ def assert_nested_type(lhs, rhs, n): "ctx", [None, "fork", "spawn"], ids=["default", "fork", "spawn"] ) @pytest.mark.parametrize("space", custom_spaces) -@pytest.mark.parametrize("use_all_kwargs", [True, False]) def test_create_shared_memory_custom_space( - n: int, ctx: Optional[str], space: Space, use_all_kwargs: bool + n: int, ctx: Optional[str], space: Space ): ctx = mp if (ctx is None) else mp.get_context(ctx) with pytest.raises(CustomSpaceError):