Skip to content

Commit 1f52761

Browse files
committed
Tweak formatting and fix bug
1 parent 7edb932 commit 1f52761

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

harness.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def test(fn):
172172
print(f"The function raised an error: {e}.")
173173
print(traceback.format_exc(chain=False))
174174
else:
175-
print(f"Out: {repr(retval)}")
175+
print(f"=> {repr(retval)}")
176176
print()
177177

178178

@@ -184,7 +184,7 @@ def do_exit(self, arg):
184184

185185
def do_list(self, arg):
186186
'Prints a list of functions that are available for testing.'
187-
print(f"Functions\n=========\n{self._make_choices_lst(choices)}\n")
187+
print(f"Functions\n=========\n{self._make_choices_lst(self.choices)}\n")
188188

189189

190190
if __name__ == '__main__':

0 commit comments

Comments
 (0)