We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7edb932 commit 1f52761Copy full SHA for 1f52761
harness.py
@@ -172,7 +172,7 @@ def test(fn):
172
print(f"The function raised an error: {e}.")
173
print(traceback.format_exc(chain=False))
174
else:
175
- print(f"Out: {repr(retval)}")
+ print(f"=> {repr(retval)}")
176
print()
177
178
@@ -184,7 +184,7 @@ def do_exit(self, arg):
184
185
def do_list(self, arg):
186
'Prints a list of functions that are available for testing.'
187
- print(f"Functions\n=========\n{self._make_choices_lst(choices)}\n")
+ print(f"Functions\n=========\n{self._make_choices_lst(self.choices)}\n")
188
189
190
if __name__ == '__main__':
0 commit comments