Skip to content

Commit c4c3b6d

Browse files
authored
Adjust fixme comments (#8811)
1 parent e729e0d commit c4c3b6d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/_pytest/mark/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,12 +190,12 @@ def deselect_by_keyword(items: "List[Item]", config: Config) -> None:
190190
return
191191

192192
if keywordexpr.startswith("-"):
193-
# To be removed in pytest 7.0.0.
193+
# To be removed in pytest 8.0.0.
194194
warnings.warn(MINUS_K_DASH, stacklevel=2)
195195
keywordexpr = "not " + keywordexpr[1:]
196196
selectuntil = False
197197
if keywordexpr[-1:] == ":":
198-
# To be removed in pytest 7.0.0.
198+
# To be removed in pytest 8.0.0.
199199
warnings.warn(MINUS_K_COLON, stacklevel=2)
200200
selectuntil = True
201201
keywordexpr = keywordexpr[:-1]

0 commit comments

Comments
 (0)