Skip to content

Commit

Permalink
Update PrimesTestCase.py
Browse files Browse the repository at this point in the history
  • Loading branch information
italo-07 committed Sep 17, 2024
1 parent 24447bb commit bd76ba2
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions v0/PrimesTestCase.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,9 @@ class PrimesTestCase(unittest.TestCase):
def test_is_five_prime(self):
self.assertTrue(is_prime(5))

def test_is_nine_prime(self):
self.assertFalse(is_prime(9))
#<Include your test here>

def test_non_integer_input(self):
self.assertFalse(is_prime("10"))




Expand Down

0 comments on commit bd76ba2

Please sign in to comment.