diff --git a/026_ifs.py b/026_ifs.py index 8f040d19..e0660a7c 100644 --- a/026_ifs.py +++ b/026_ifs.py @@ -56,6 +56,9 @@ def is_first_of_the_month(day_number): # Return "Not first of the month" otherwise. pass +def is_first_of_the_month(actual, expected): + assert actual == expected, f"Expected {expected}, but got {actual}" + check_that_these_are_equal( is_first_of_the_month(1), "First of the month!"