diff options
author | prathamesh | 2014-06-27 12:03:18 +0530 |
---|---|---|
committer | prathamesh | 2014-06-27 12:03:18 +0530 |
commit | 3c82dd0faf2f1273cb590b360a9696a973b30720 (patch) | |
tree | 624b03be9921098aeffaea845b857cc357a66705 /testapp/exam/tests.py | |
parent | b61c62291424089478064af1fceb81c1ed4e5c54 (diff) | |
download | online_test-3c82dd0faf2f1273cb590b360a9696a973b30720.tar.gz online_test-3c82dd0faf2f1273cb590b360a9696a973b30720.tar.bz2 online_test-3c82dd0faf2f1273cb590b360a9696a973b30720.zip |
Made the minor change
Diffstat (limited to 'testapp/exam/tests.py')
-rw-r--r-- | testapp/exam/tests.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/testapp/exam/tests.py b/testapp/exam/tests.py index eb63ba4..d76e4f8 100644 --- a/testapp/exam/tests.py +++ b/testapp/exam/tests.py @@ -273,10 +273,10 @@ class AnswerPaperTestCases(unittest.TestCase): self.answerpaper.update_percent() self.assertEqual(self.answerpaper.percent, 33.33) - def test_update_result(self): - """ Test update_result() method of AnswerPaper""" - self.answerpaper.update_result() - self.assertFalse(self.answerpaper.result) + def test_update_passed(self): + """ Test update_passed method of AnswerPaper""" + self.answerpaper.update_passed() + self.assertFalse(self.answerpaper.passed) def test_get_question_answer(self): """ Test get_question_answer() method of Answer Paper""" |