Hello, @enoren5, and welcome to the Python Forum!
Here’s a clue:
- Carefully explain to us the purpose of the
elapsed_time_in_minutes
function. Is it consistent with what is in thereturn
statement for that function?
EDIT (November 26, 2021):
The following line means that when the following call was made as a test …
elapsed_time_in_minutes(1, 3)
… your function returned -33
when it should have returned 5
.
FAILED lasagna_test.py::LasagnaTest::test_elapsed_time_in_minutes - AssertionError: -33 != 5 : Expected 3 minutes elapsed, but the timing was calculated incorrectly.