test: Update bitwise arithmetic difficulty levels to [1, 2, 3]

This commit is contained in:
Andreas Koepf (aider) 2025-02-21 17:22:36 +01:00
parent 660f7e6f03
commit e846c53347

View file

@ -48,7 +48,7 @@ def test_bitwise_arithmetic_items():
def test_bitwise_arithmetic_difficulty_levels():
"""Test that different difficulty levels produce appropriate complexity"""
for difficulty in [1, 5, 10]:
for difficulty in [1, 2, 3]:
config = BitwiseArithmeticConfig(difficulty=difficulty, size=50, seed=42)
dataset = BitwiseArithmeticDataset(config)