Skip to content

Commit

Permalink
reto mouredev#26-python
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinED11 committed Jun 28, 2023
1 parent 1708aae commit f770c4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Retos/Reto #26 - TESTING [Media]/python/KevinED11.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def is_friday_13(year: int, month: int) -> bool:
day=13).weekday() == 4


class TestFriday13(unittest.TestCase):
class TestIsFriday13(unittest.TestCase):
def setUp(self):
self.valid_friday_13 = is_friday_13(year=2023, month=1)
self.invalid_friday_13 = is_friday_13(year=2023, month=2)
Expand All @@ -22,7 +22,7 @@ def test_valid_expected_return_type(self):
def test_valid_friday_13(self):
self.assertIs(self.valid_friday_13, True)

def test_invalid_fryday_13(self):
def test_invalid_friday_13(self):
self.assertIsNot(self.invalid_friday_13, True)

def test_expected_error(self):
Expand Down

0 comments on commit f770c4f

Please sign in to comment.