Commit 6e41c082 by Vik Paruchuri

Fix tests

parent 4b5aba29
...@@ -64,6 +64,12 @@ class OpenEndedChildTest(unittest.TestCase): ...@@ -64,6 +64,12 @@ class OpenEndedChildTest(unittest.TestCase):
's3_interface': "", 's3_interface': "",
'open_ended_grading_interface': {}, 'open_ended_grading_interface': {},
'skip_basic_checks': False, 'skip_basic_checks': False,
'control': {
'required_peer_grading': 1,
'peer_grader_count': 1,
'min_to_calibrate': 3,
'max_to_calibrate': 6,
}
} }
definition = Mock() definition = Mock()
descriptor = Mock() descriptor = Mock()
...@@ -180,6 +186,12 @@ class OpenEndedModuleTest(unittest.TestCase): ...@@ -180,6 +186,12 @@ class OpenEndedModuleTest(unittest.TestCase):
's3_interface': test_util_open_ended.S3_INTERFACE, 's3_interface': test_util_open_ended.S3_INTERFACE,
'open_ended_grading_interface': test_util_open_ended.OPEN_ENDED_GRADING_INTERFACE, 'open_ended_grading_interface': test_util_open_ended.OPEN_ENDED_GRADING_INTERFACE,
'skip_basic_checks': False, 'skip_basic_checks': False,
'control': {
'required_peer_grading': 1,
'peer_grader_count': 1,
'min_to_calibrate': 3,
'max_to_calibrate': 6,
}
} }
oeparam = etree.XML(''' oeparam = etree.XML('''
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment