Skip to content

Commit

Permalink
Fix tests about previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Gustry committed Jan 22, 2024
1 parent a66e65c commit 9a06216
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions test/test_parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,7 @@ def test_changelog_parameters(self):
"""Test parameters for changelog command."""
# For the changelog command, the configuration file is optional.
# It mustn't raise an exception
parameters = Parameters.make_from(
args={},
path_to_config_file=Path("does-not-exist.yml"),
optional_configuration=True,
)
parameters = Parameters.make_from(args={}, optional_configuration=True)
self.assertIsNone(parameters.plugin_path)
self.assertEqual("CHANGELOG.md", parameters.changelog_path)

Expand Down

0 comments on commit 9a06216

Please sign in to comment.