mark: fix extraneous spaces in dummy type-checking marks
(cherry picked from commit 54e08b7230
)
This commit is contained in:
parent
edb6211e36
commit
bec1bdaa2c
|
@ -476,9 +476,9 @@ class MarkGenerator:
|
|||
skip = _SkipMarkDecorator(Mark("skip", (), {}))
|
||||
skipif = _SkipifMarkDecorator(Mark("skipif", (), {}))
|
||||
xfail = _XfailMarkDecorator(Mark("xfail", (), {}))
|
||||
parametrize = _ParametrizeMarkDecorator(Mark("parametrize ", (), {}))
|
||||
usefixtures = _UsefixturesMarkDecorator(Mark("usefixtures ", (), {}))
|
||||
filterwarnings = _FilterwarningsMarkDecorator(Mark("filterwarnings ", (), {}))
|
||||
parametrize = _ParametrizeMarkDecorator(Mark("parametrize", (), {}))
|
||||
usefixtures = _UsefixturesMarkDecorator(Mark("usefixtures", (), {}))
|
||||
filterwarnings = _FilterwarningsMarkDecorator(Mark("filterwarnings", (), {}))
|
||||
|
||||
def __getattr__(self, name: str) -> MarkDecorator:
|
||||
if name[0] == "_":
|
||||
|
|
Loading…
Reference in New Issue