Skip to content

Commit

Permalink
Merge pull request #19 from LedgerHQ/fbe/test___init___nok_empty
Browse files Browse the repository at this point in the history
Fix test___init___nok_empty
  • Loading branch information
fbeutin-ledger authored Feb 22, 2024
2 parents 8263fe4 + 9652db5 commit 55d44ed
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/unit/manifest/test_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,5 +101,7 @@ def test____init___ok_complete(self):


def test___init___nok_empty(self):
with self.assertRaises(TypeError):
config = TestsConfig(**dict())
config = TestsConfig(**dict())
self.assertIsNone(config.unit_directory)
self.assertIsNone(config.pytest_directory)
self.assertIsNone(config.dependencies)

0 comments on commit 55d44ed

Please sign in to comment.