Skip to content

Commit

Permalink
Remove unused n_pos_arg argument in test
Browse files Browse the repository at this point in the history
Signed-off-by: Fabrice Normandin <fabrice.normandin@gmail.com>
  • Loading branch information
lebrice committed Nov 4, 2021
1 parent 5d49917 commit 1578ad6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/vector/test_shared_memory.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 1578ad6

Please sign in to comment.