Merge pull request #4105 from blueyed/repr

Fix trailing whitespace in FixtureDef.__repr__
This commit is contained in:
Daniel Hahler 2018-10-10 19:28:32 +02:00 committed by GitHub
commit 4c9015c3b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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,