diff --git a/tests/test_api.py b/tests/test_api.py index eb6ab47..72d09f6 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -61,7 +61,7 @@ def test_invalid_marker(marker: str) -> None: @pytest.mark.parametrize("marker", [123, [1], {"key": "value"}]) def test_nonstring_marker(marker: str) -> None: - with pytest.raises(TypeError, match="The marker has to be a st"): + with pytest.raises(TypeError, match="The marker has to be a string"): Dahlia(marker=marker)