From 401a3cd1bcdcb997cf68e9ebe070059648799be0 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Fri, 9 Nov 2018 01:27:11 +0100 Subject: [PATCH] minor: improve FixtureDef.__repr__ Ref: https://github.com/pytest-dev/pytest/pull/4105#pullrequestreview-163486766 --- src/_pytest/fixtures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_pytest/fixtures.py b/src/_pytest/fixtures.py index 73aed8371..124b611db 100644 --- a/src/_pytest/fixtures.py +++ b/src/_pytest/fixtures.py @@ -927,7 +927,7 @@ class FixtureDef(object): return hook.pytest_fixture_setup(fixturedef=self, request=request) def __repr__(self): - return "" % ( + return "" % ( self.argname, self.scope, self.baseid,