Skip to content

Commit cc41c48

Browse files
author
Filip Schouwenaars
authored
Merge pull request #173 from datacamp/reenable-function-highlight
set function highlighting true by default
2 parents def48d8 + 9878989 commit cc41c48

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

pythonwhat/test_funcs/test_function.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def test_function(name,
1919
args_not_specified_msg=None,
2020
incorrect_msg=None,
2121
add_more=False,
22-
highlight=False,
22+
highlight=True,
2323
state=None):
2424
"""Test if function calls match.
2525
@@ -200,7 +200,7 @@ def test_print(index = 1,
200200
params_not_matched_msg="Have you correctly called `print()`?",
201201
params_not_specified_msg="Have you correctly called `print()`?",
202202
incorrect_msg="Have you printed out the correct object?",
203-
highlight=False,
203+
highlight=True,
204204
state=None):
205205
test_function_v2("print",
206206
index=index,
@@ -229,7 +229,7 @@ def test_function_v2(name,
229229
params_not_specified_msg=None,
230230
incorrect_msg=None,
231231
add_more=False,
232-
highlight=False,
232+
highlight=True,
233233
state=None):
234234
"""Test if function calls match (v2).
235235

0 commit comments

Comments
 (0)