summaryrefslogtreecommitdiff
path: root/python/problems/lists_and_for/contains_42/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/problems/lists_and_for/contains_42/common.py')
-rw-r--r--python/problems/lists_and_for/contains_42/common.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/python/problems/lists_and_for/contains_42/common.py b/python/problems/lists_and_for/contains_42/common.py
index 3a5a905..3ebe546 100644
--- a/python/problems/lists_and_for/contains_42/common.py
+++ b/python/problems/lists_and_for/contains_42/common.py
@@ -63,7 +63,10 @@ def test(python, code):
if str(test_out[xs_i]) in output and \
str(not test_out[xs_i]) not in output:
n_correct += 1
- return n_correct, len(test_out)
+
+ passed = n_correct == len(test_in)
+ hints = [{'id': 'test_results', 'args': {'passed': n_correct, 'total': len(test_in)}}]
+ return passed, hints
def hint(python, code):
# run one test first to see if there are any exceptions