-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Fix trailing whitespace in FixtureDef.__repr__ #4105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Codecov Report
@@ Coverage Diff @@
## features #4105 +/- ##
============================================
- Coverage 94.52% 94.41% -0.11%
============================================
Files 109 109
Lines 23940 23940
Branches 2363 2363
============================================
- Hits 22629 22604 -25
- Misses 1001 1022 +21
- Partials 310 314 +4
Continue to review full report at Codecov.
|
@@ -899,7 +899,7 @@ def execute(self, request): | |||
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, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Might also have been good to replace "name" with "argname"?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm yes I think so
No description provided.