diff options
Diffstat (limited to 'python/problems/introduction/pythagorean_theorem')
-rw-r--r-- | python/problems/introduction/pythagorean_theorem/common.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/python/problems/introduction/pythagorean_theorem/common.py b/python/problems/introduction/pythagorean_theorem/common.py index 7a232c1..405a39c 100644 --- a/python/problems/introduction/pythagorean_theorem/common.py +++ b/python/problems/introduction/pythagorean_theorem/common.py @@ -55,7 +55,10 @@ def test(python, code): for output, correct in zip(outputs, test_out): if string_almost_equal(output, float(correct)): n_correct += 1 - return n_correct, len(test_in) + + 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 |