Skip to content

Commit

Permalink
Fixed anyio_backend fixture definition in test_module_scoped_task_gro…
Browse files Browse the repository at this point in the history
…up_fixture
  • Loading branch information
jhominal committed Nov 6, 2023
1 parent 2e09925 commit 9b4e8d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_pytest_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,8 +265,8 @@ def test_module_scoped_task_group_fixture(testdir: Pytester) -> None:
@pytest.fixture(scope="module", params=get_all_backends())
def anyio_backend():
return 'asyncio'
def anyio_backend(request):
return request.param
@pytest.fixture(scope="module")
Expand Down

0 comments on commit 9b4e8d9

Please sign in to comment.