diff --git a/tests/test_unit_dice_roller.py b/tests/test_unit_dice_roller.py index f443b81..337f86b 100644 --- a/tests/test_unit_dice_roller.py +++ b/tests/test_unit_dice_roller.py @@ -28,16 +28,6 @@ def test_invalid_notation(): with pytest.raises(ValueError): roll_dice("3dd6") - -def test_invalid_sides(): - """Tests invalid number of sides. - - Checks whether the roll_dice function raises a ValueError when the number of sides is invalid, i.e., '3d7'. - """ - with pytest.raises(ValueError): - roll_dice("3d7") - - def test_with_modifier(): """Tests dice notation with a positive modifier.