diff options
author | Timotej Lazar <timotej.lazar@fri.uni-lj.si> | 2016-01-12 13:14:49 +0100 |
---|---|---|
committer | Timotej Lazar <timotej.lazar@fri.uni-lj.si> | 2016-01-12 13:14:49 +0100 |
commit | e36a8a2feca7552d236c0f6e89ac73e7e690e7b1 (patch) | |
tree | 646bc6c943461d872bd0226e70ffe4e1567e44cc /prolog/problems/lists/sublist_2 | |
parent | f2eaf692038294572e0e5453595c45bc1da92cb6 (diff) |
Return number of passed/total tests from Prolog test functions
Diffstat (limited to 'prolog/problems/lists/sublist_2')
-rw-r--r-- | prolog/problems/lists/sublist_2/common.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/prolog/problems/lists/sublist_2/common.py b/prolog/problems/lists/sublist_2/common.py index 7b6ea64..b5f6b89 100644 --- a/prolog/problems/lists/sublist_2/common.py +++ b/prolog/problems/lists/sublist_2/common.py @@ -43,9 +43,8 @@ def test(code, aux_code): if engine_id: prolog.engine.destroy(engine_id) - passed = n_correct == len(test_cases) hints = [{'id': 'test_results', 'args': {'passed': n_correct, 'total': len(test_cases)}}] - return passed, hints + return n_correct, len(test_cases), hints def hint(code, aux_code): # TODO |