Skip to content

Commit

Permalink
fix line length error found by good old tox
Browse files Browse the repository at this point in the history
  • Loading branch information
brainelectronics committed Oct 4, 2024
1 parent 8822586 commit cfebf11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_extract_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def test_parse_changelog_completely_file(self,
file_name: str,
expectation: List[str],
expected_description: str,
expected_meta_data: Dict[str, str],
expected_meta: Dict[str, str],
) -> None:
"""Test parse_changelog"""
changelog = self._here / 'data' / 'valid' / file_name
Expand All @@ -166,7 +166,7 @@ def test_parse_changelog_completely_file(self,
self.assertIsInstance(self.ev.latest_description, str)
self.assertIsInstance(self.ev.meta_data, dict)
self.assertEqual(self.ev.latest_description, expected_description)
self.assertEqual(self.ev.meta_data, expected_meta_data)
self.assertEqual(self.ev.meta_data, expected_meta)
self.assertTrue(all(isinstance(ele, str)
for ele in self.ev.latest_description_lines))
self.assertTrue(len(self.ev.latest_description_lines) in [3, 5])
Expand Down

0 comments on commit cfebf11

Please sign in to comment.