Skip to content

Commit

Permalink
Fix assertions not visible on timeout (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kacarott committed May 4, 2022
1 parent 072ae38 commit 4ce6287
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion codewars_test/test_framework.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ def format_message(message):

def display(type, message, label="", mode=""):
print("\n<{0}:{1}:{2}>{3}".format(
type.upper(), mode.upper(), label, format_message(message)))
type.upper(), mode.upper(), label, format_message(message))
, flush=True)


def expect(passed=None, message=None, allow_raise=False):
Expand Down

0 comments on commit 4ce6287

Please sign in to comment.