Skip to content

Commit

Permalink
Update test_find_prime_numbers.py
Browse files Browse the repository at this point in the history
  • Loading branch information
theabdallahnjr authored Jan 11, 2025
1 parent 1eb5d08 commit 15512d2
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions solutions/tests/test_find_prime_numbers.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,6 @@ def test_is_prime_one(self):
expected = False
self.assertEqual(actual, expected)

def test_is_prime_negative(self):
"""
It should raise an assertion error if the input is a negative integer
"""
with self.assertRaises(AssertionError):
is_prime(-5)

def test_is_prime_string(self):
"""
It should raise an assertion error if the input is a non-integer
Expand Down

0 comments on commit 15512d2

Please sign in to comment.