We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f18da2 commit e1cfee3Copy full SHA for e1cfee3
tests/test_integration/test_examples/_async/test_parent_child.py
@@ -18,7 +18,7 @@
18
from datetime import datetime
19
20
import pytest
21
-from pytest_asyncio import fixture
+import pytest_asyncio
22
23
from elasticsearch_dsl import Q
24
@@ -41,7 +41,7 @@
41
)
42
43
44
-@fixture
+@pytest_asyncio.fixture
45
async def question(async_write_client):
46
await setup()
47
assert await async_write_client.indices.exists_template(name="base")
tests/test_integration/test_examples/_sync/test_parent_child.py
@@ -18,7 +18,6 @@
-from pytest import fixture
@@ -41,7 +40,7 @@
40
+@pytest.fixture
def question(write_client):
setup()
assert write_client.indices.exists_template(name="base")
0 commit comments