diff options
author | ankitjavalkar | 2016-11-16 11:25:30 +0530 |
---|---|---|
committer | ankitjavalkar | 2016-11-16 11:25:30 +0530 |
commit | b32d7e91fe608c4cbd09b50520d4a3cab75d2e53 (patch) | |
tree | ab726e234a2c72aa3a926a2ed70ae54e9b8919ee /yaksh/python_assertion_evaluator.py | |
parent | 232c4480d47b75fcdb523e5ebb601959c56e40dc (diff) | |
download | online_test-b32d7e91fe608c4cbd09b50520d4a3cab75d2e53.tar.gz online_test-b32d7e91fe608c4cbd09b50520d4a3cab75d2e53.tar.bz2 online_test-b32d7e91fe608c4cbd09b50520d4a3cab75d2e53.zip |
Change test_case weightage field name to weight
Diffstat (limited to 'yaksh/python_assertion_evaluator.py')
-rw-r--r-- | yaksh/python_assertion_evaluator.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/yaksh/python_assertion_evaluator.py b/yaksh/python_assertion_evaluator.py index 6503566..8924643 100644 --- a/yaksh/python_assertion_evaluator.py +++ b/yaksh/python_assertion_evaluator.py @@ -25,7 +25,7 @@ class PythonAssertionEvaluator(CodeEvaluator): delete_files(self.files) super(PythonAssertionEvaluator, self).teardown() - def compile_code(self, user_answer, file_paths, test_case, weightage): + def compile_code(self, user_answer, file_paths, test_case, weight): if file_paths: self.files = copy_files(file_paths) if self.exec_scope: @@ -36,9 +36,9 @@ class PythonAssertionEvaluator(CodeEvaluator): exec(submitted, self.exec_scope) return self.exec_scope - def check_code(self, user_answer, file_paths, partial_grading, test_case, weightage): + def check_code(self, user_answer, file_paths, partial_grading, test_case, weight): success = False - test_case_weightage = 0.0 + test_case_weight = 0.0 try: tb = None _tests = compile(test_case, '<string>', mode='exec') @@ -54,6 +54,6 @@ class PythonAssertionEvaluator(CodeEvaluator): else: success = True err = 'Correct answer' - test_case_weightage = float(weightage) if partial_grading else 0.0 + test_case_weight = float(weight) if partial_grading else 0.0 del tb - return success, err, test_case_weightage + return success, err, test_case_weight |