Skip to content

Commit

Permalink
Merge pull request #72 from UBC-MDS/package_rename
Browse files Browse the repository at this point in the history
feat: fixed version
  • Loading branch information
vrudhgarg authored Jan 30, 2025
2 parents 916108f + 135f7aa commit e37f1bd
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions tests/test_arithmetic_progression.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,6 @@ def test_zero_terms():
except ValueError as e:
assert str(e) == "The number of terms 'n' must be a positive integer."

# def test_negative_terms():
# """Test when n is negative, which should raise a ValueError."""
# try:
# arithmetic_progression(a=1, d=2, n=-5)
# assert False, "Expected ValueError, but no exception was raised"
# except ValueError as e:
# assert str(e) == "The number of terms 'n' must be a positive integer."

@pytest.mark.parametrize(
"a",
[
Expand Down

0 comments on commit e37f1bd

Please sign in to comment.