@@ -53,7 +53,7 @@ is to ``import pytest_twisted as pt``.
53
53
inlineCallbacks
54
54
===============
55
55
Using ``twisted.internet.defer.inlineCallbacks `` as a decorator for test
56
- functions, which take funcargs , does not work. Please use
56
+ functions, which use fixtures , does not work. Please use
57
57
``pytest_twisted.inlineCallbacks `` instead::
58
58
59
59
@pytest_twisted.inlineCallbacks
@@ -65,7 +65,7 @@ functions, which take funcargs, does not work. Please use
65
65
ensureDeferred
66
66
==============
67
67
Using ``twisted.internet.defer.ensureDeferred `` as a decorator for test
68
- functions, which take funcargs , does not work. Please use
68
+ functions, which use fixtures , does not work. Please use
69
69
``pytest_twisted.ensureDeferred `` instead::
70
70
71
71
@pytest_twisted.ensureDeferred
@@ -89,7 +89,7 @@ The twisted greenlet
89
89
====================
90
90
Some libraries (e.g. corotwine) need to know the greenlet, which is
91
91
running the twisted reactor. It's available from the
92
- ``twisted_greenlet `` funcarg . The following code can be used to make
92
+ ``twisted_greenlet `` fixture . The following code can be used to make
93
93
corotwine work with pytest-twisted::
94
94
95
95
@pytest.fixture(scope="session", autouse=True)
0 commit comments