Skip to content

Commit

Permalink
kalender
Browse files Browse the repository at this point in the history
  • Loading branch information
stgm committed Nov 15, 2022
1 parent d523c61 commit 3517145
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/kalenderTest.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ def checks_days_until_month(test):
def testMethod():
fn = lib.getFunction("days_until_month", test.fileName)
if (
fn(1, 1800, True) == 0
and fn(5, 1804, True) == 121
and fn(5, 1800, False) == 120
fn(1, 1800) == 0
and fn(5, 1804) == 121
and fn(5, 1800) == 120
):
return True
else:
Expand Down

0 comments on commit 3517145

Please sign in to comment.