From 798d36aa12e22928e884668ae5c80a25d48393ea Mon Sep 17 00:00:00 2001 From: ankitjavalkar Date: Mon, 19 Dec 2016 19:37:23 +0530 Subject: Change weight variable name to mark_fraction --- yaksh/code_evaluator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'yaksh/code_evaluator.py') diff --git a/yaksh/code_evaluator.py b/yaksh/code_evaluator.py index ae61752..095099b 100644 --- a/yaksh/code_evaluator.py +++ b/yaksh/code_evaluator.py @@ -144,9 +144,9 @@ class CodeEvaluator(object): for idx, test_case_instance in enumerate(test_case_instances): test_case_success = False test_case_instance.compile_code() - test_case_success, err, test_case_weight = test_case_instance.check_code() + test_case_success, err, mark_fraction = test_case_instance.check_code() if test_case_success: - weight += test_case_weight + weight += mark_fraction error += err + "\n" test_case_success_status[idx] = test_case_success -- cgit