Merge pull request #2983 from nicoddemus/improve-assert-2979
Improve getscopeitem assertion message
This commit is contained in:
commit
4de433e280
|
@ -553,7 +553,7 @@ class FixtureRequest(FuncargnamesCompatAttr):
|
||||||
if node is None and scope == "class":
|
if node is None and scope == "class":
|
||||||
# fallback to function item itself
|
# fallback to function item itself
|
||||||
node = self._pyfuncitem
|
node = self._pyfuncitem
|
||||||
assert node
|
assert node, 'Could not obtain a node for scope "{}" for function {!r}'.format(scope, self._pyfuncitem)
|
||||||
return node
|
return node
|
||||||
|
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
|
|
Loading…
Reference in New Issue