We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 614aae3 commit 113ed5cCopy full SHA for 113ed5c
tests/test_changelog.py
@@ -1641,7 +1641,9 @@ def test_tags_rules_get_version_tags(capsys: pytest.CaptureFixture):
1641
1642
def test_changelog_file_name_from_args_and_config():
1643
mock_config = Mock(spec=BaseConfig)
1644
- mock_config.path.parent = "/my/project"
+ mock_path = Mock(spec=Path)
1645
+ mock_path.parent = Path("/my/project")
1646
+ mock_config.path = mock_path
1647
mock_config.settings = {
1648
"name": "cz_conventional_commits",
1649
"changelog_file": "CHANGELOG.md",
0 commit comments