diff --git a/CHANGELOG.md b/CHANGELOG.md index 0037111f..660b0d07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -# 2.11 (2023-11-13) -* Switch to tomllib/tomli to support heterogenous arrays. (Sebastian Csar, #340) +# next (unreleased) +* Switch to tomllib/tomli to support heterogeneous arrays (Sebastian Csar, #340). # 2.10 (2023-10-06) diff --git a/tests/test_config.py b/tests/test_config.py index 30e21984..7872b082 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -106,7 +106,7 @@ def test_toml_config_with_heterogenous_array(): """\ [tool.foo] # comment for good measure - problem_array = [{ a = 1}, [2,3,4], "foo"] + problem_array = [{a = 1}, [2,3,4], "foo"] [tool.vulture] exclude = ["file*.py", "dir/"]