Skip to content

Commit 9631ed6

Browse files
committed
fix scope typo
1 parent 3924d80 commit 9631ed6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/asynchronous/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def event_loop_policy():
2424
return asyncio.get_event_loop_policy()
2525

2626

27-
@pytest_asyncio.fixture(scope="packages", autouse=True)
27+
@pytest_asyncio.fixture(scope="package", autouse=True)
2828
async def test_setup_and_teardown():
2929
await async_setup()
3030
yield

test/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def event_loop_policy():
2222
return asyncio.get_event_loop_policy()
2323

2424

25-
@pytest.fixture(scope="packages", autouse=True)
25+
@pytest.fixture(scope="package", autouse=True)
2626
def test_setup_and_teardown():
2727
setup()
2828
yield

0 commit comments

Comments
 (0)