Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Tests/test_imagemorph.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,11 @@ def test_unknown_pattern() -> None:


@pytest.mark.parametrize(
"pattern", ("a pattern with a syntax error", "4:(" + "X" * 30000)
"pattern",
(
pytest.param("a pattern with a syntax error", id="syntax-error"),
pytest.param("4:(" + "X" * 30000, id="long-operation"),
),
)
@timeout_unless_slower_valgrind(1)
def test_pattern_syntax_error(pattern: str) -> None:
Expand Down
Loading