Merge pull request #4105 from blueyed/repr
Fix trailing whitespace in FixtureDef.__repr__
This commit is contained in:
commit
4c9015c3b1
|
@ -916,7 +916,7 @@ class FixtureDef(object):
|
|||
return hook.pytest_fixture_setup(fixturedef=self, request=request)
|
||||
|
||||
def __repr__(self):
|
||||
return "<FixtureDef name=%r scope=%r baseid=%r >" % (
|
||||
return "<FixtureDef name=%r scope=%r baseid=%r>" % (
|
||||
self.argname,
|
||||
self.scope,
|
||||
self.baseid,
|
||||
|
|
Loading…
Reference in New Issue