Skip to content

Commit 54e08b7

Browse files
committed
mark: fix extraneous spaces in dummy type-checking marks
1 parent f9837f9 commit 54e08b7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/_pytest/mark/structures.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -476,9 +476,9 @@ def test_function():
476476
skip = _SkipMarkDecorator(Mark("skip", (), {}))
477477
skipif = _SkipifMarkDecorator(Mark("skipif", (), {}))
478478
xfail = _XfailMarkDecorator(Mark("xfail", (), {}))
479-
parametrize = _ParametrizeMarkDecorator(Mark("parametrize ", (), {}))
480-
usefixtures = _UsefixturesMarkDecorator(Mark("usefixtures ", (), {}))
481-
filterwarnings = _FilterwarningsMarkDecorator(Mark("filterwarnings ", (), {}))
479+
parametrize = _ParametrizeMarkDecorator(Mark("parametrize", (), {}))
480+
usefixtures = _UsefixturesMarkDecorator(Mark("usefixtures", (), {}))
481+
filterwarnings = _FilterwarningsMarkDecorator(Mark("filterwarnings", (), {}))
482482

483483
def __getattr__(self, name: str) -> MarkDecorator:
484484
if name[0] == "_":

0 commit comments

Comments
 (0)