From bbd5ee9f47dabe3fd495c3168726c8e8a593a763 Mon Sep 17 00:00:00 2001 From: Jordan1-34 <131589592+Jordan1-34@users.noreply.github.com> Date: Sat, 3 Aug 2024 20:36:15 +0100 Subject: [PATCH] Update 026_ifs.py --- 026_ifs.py | 3 +++ 1 file changed, 3 insertions(+) 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!"