Skip to content

Commit 3d07791

Browse files
committed
chore: remove obsolete TODOs
1 parent dd57196 commit 3d07791

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

testing/test_mark.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ def test_two():
235235

236236
@pytest.mark.parametrize(
237237
("expr", "expected_passed"),
238-
[ # TODO: improve/sort out
238+
[
239239
("car(color='red')", ["test_one"]),
240240
("car(color='red') or car(color='blue')", ["test_one", "test_two"]),
241241
("car and not car(temp=5)", ["test_one", "test_three"]),

testing/test_mark_expression.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ def test_invalid_idents(ident: str) -> None:
231231
("'str'", "expected not OR left parenthesis OR identifier; got string literal"),
232232
),
233233
)
234-
def test_invalid_kwarg_name_or_value( # TODO: move to `test_syntax_errors` ?
234+
def test_invalid_kwarg_name_or_value(
235235
expr: str, expected_error_msg: str, mark_matcher: MarkMatcher
236236
) -> None:
237237
with pytest.raises(ParseError, match=expected_error_msg):
@@ -290,7 +290,7 @@ def test_keyword_expressions_with_numbers(
290290
("builtin_matchers_mark(z=1)", False),
291291
),
292292
)
293-
def test_builtin_matchers_keyword_expressions( # TODO: naming when decided
293+
def test_builtin_matchers_keyword_expressions(
294294
expr: str, expected: bool, mark_matcher: MarkMatcher
295295
) -> None:
296296
assert evaluate(expr, mark_matcher) is expected

0 commit comments

Comments
 (0)