fix chain_sum unit test

This commit is contained in:
Andreas Koepf 2025-01-30 10:57:55 +01:00
parent f75cc3e17e
commit d90548658e
3 changed files with 19 additions and 8 deletions

View file

@ -19,7 +19,6 @@ class ChainSumConfig:
def validate(self) -> None:
"""Validate configuration parameters"""
assert self.difficulty > 0, "difficulty must be positive"
assert self.size > 0, "size must be positive"
"""Validate configuration parameters"""
assert self.min_terms > 0, "min_terms must be positive"