Skip to content

Commit

Permalink
sjoelen
Browse files Browse the repository at this point in the history
  • Loading branch information
stgm committed Sep 18, 2023
1 parent 14b68b0 commit f3256b2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/sjoelenTest.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def testMethod():
return False

test.test = testMethod
test.description = lambda : "'calculate_points' works correctly."
test.description = lambda : "'calculate_points' werkt correct"


@t.test(1)
Expand All @@ -29,7 +29,7 @@ def testMethod():
return False

test.test = testMethod
test.description = lambda : "The board remains unchanged in 'calculate_points'."
test.description = lambda : "de functie 'calculate_points' doet geen wijzigingen aan het board"

@t.test(2)
def checks_shuffle_round(test):
Expand All @@ -43,7 +43,7 @@ def testMethod():
6.5 < board[3] < 8.5):
return True
else:
return False, board
return False, f"we komen uit op {board}"

test.test = testMethod
test.description = lambda : "'shuffle_round' simulates games with chances within the required ranges."
test.description = lambda : "simulaties met 'shuffle_round' komen uit binnen de aangegeven grenzen"

0 comments on commit f3256b2

Please sign in to comment.