diff options
author | ankitjavalkar | 2016-12-19 19:37:23 +0530 |
---|---|---|
committer | ankitjavalkar | 2016-12-20 12:46:04 +0530 |
commit | 798d36aa12e22928e884668ae5c80a25d48393ea (patch) | |
tree | 8de32b8f4eac72ad103272ab056c421c46718c11 /yaksh/python_assertion_evaluator.py | |
parent | 4a0f94084bc26559ef3e26470619e87314f9d70e (diff) | |
download | online_test-798d36aa12e22928e884668ae5c80a25d48393ea.tar.gz online_test-798d36aa12e22928e884668ae5c80a25d48393ea.tar.bz2 online_test-798d36aa12e22928e884668ae5c80a25d48393ea.zip |
Change weight variable name to mark_fraction
Diffstat (limited to 'yaksh/python_assertion_evaluator.py')
-rw-r--r-- | yaksh/python_assertion_evaluator.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/yaksh/python_assertion_evaluator.py b/yaksh/python_assertion_evaluator.py index 8e4f0b3..0b49cb0 100644 --- a/yaksh/python_assertion_evaluator.py +++ b/yaksh/python_assertion_evaluator.py @@ -66,7 +66,7 @@ class PythonAssertionEvaluator(BaseEvaluator): the required permissions are not given to the file(s). """ success = False - test_case_weight = 0.0 + mark_fraction = 0.0 try: tb = None _tests = compile(self.test_case, '<string>', mode='exec') @@ -86,6 +86,6 @@ class PythonAssertionEvaluator(BaseEvaluator): else: success = True err = '-----\nCorrect answer\nTest Case: {0}\n-----'.format(self.test_case) - test_case_weight = float(self.weight) if self.partial_grading else 0.0 + mark_fraction = float(self.weight) if self.partial_grading else 0.0 del tb - return success, err, test_case_weight + return success, err, mark_fraction |