diff options
author | adityacp | 2021-02-16 16:13:24 +0530 |
---|---|---|
committer | adityacp | 2021-02-16 16:13:24 +0530 |
commit | 0697dc314471a2bde90d52b1726914c85a360470 (patch) | |
tree | dc8b56154af6981894a798c6f7c209cc90b39191 /yaksh/evaluator_tests | |
parent | 1a2d31e1c59427c28211030ea09cd4964b4bd8d8 (diff) | |
download | online_test-0697dc314471a2bde90d52b1726914c85a360470.tar.gz online_test-0697dc314471a2bde90d52b1726914c85a360470.tar.bz2 online_test-0697dc314471a2bde90d52b1726914c85a360470.zip |
Change travis and tests
- Add celery run and stop worker command in travis
- Fix failing tests
Diffstat (limited to 'yaksh/evaluator_tests')
-rw-r--r-- | yaksh/evaluator_tests/test_simple_question_types.py | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/yaksh/evaluator_tests/test_simple_question_types.py b/yaksh/evaluator_tests/test_simple_question_types.py index 5edd545..13d639e 100644 --- a/yaksh/evaluator_tests/test_simple_question_types.py +++ b/yaksh/evaluator_tests/test_simple_question_types.py @@ -662,16 +662,8 @@ class ArrangeQuestionTestCases(unittest.TestCase): regrade_answer.answer = 1 regrade_answer.save() details = self.answerpaper.regrade(self.question1.id) - err_msg = dedent("""\ - User: {0}; Quiz: {1}; Question: {2}. - {3} answer not a list.""".format( - self.user.username, - self.quiz.description, - self.question1.summary, - self.question1.type - )) self.assertFalse(details[0]) - self.assertEqual(details[1], err_msg) + self.assertIn("arrange answer not a list", details[1]) # Try regrade with incorrect answer # When |