diff options
author | maheshgudi | 2016-05-13 18:46:46 +0530 |
---|---|---|
committer | maheshgudi | 2016-05-27 12:43:12 +0530 |
commit | 14b1408c291c644ec5748e029ac1ae39e9ac3913 (patch) | |
tree | f9062f120dc5df6c1eb8f061f9dc2170acab7327 /yaksh/models.py | |
parent | 669c84765fd79e5431ebe4fb20aa122133e0c5c1 (diff) | |
download | online_test-14b1408c291c644ec5748e029ac1ae39e9ac3913.tar.gz online_test-14b1408c291c644ec5748e029ac1ae39e9ac3913.tar.bz2 online_test-14b1408c291c644ec5748e029ac1ae39e9ac3913.zip |
fixed model manager method name changes in testcases
Diffstat (limited to 'yaksh/models.py')
-rw-r--r-- | yaksh/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yaksh/models.py b/yaksh/models.py index 1875fd2..3a2506c 100644 --- a/yaksh/models.py +++ b/yaksh/models.py @@ -421,7 +421,7 @@ class QuestionPaperManager(models.Manager): def create_trial_paper_to_test_questions(self, trial_quiz, questions_list): - """Creates a trial question paper to test selected questions""" + """Creates a trial question paper to test selected questions""" if questions_list is not None: trial_questionpaper=self.create(quiz=trial_quiz, total_marks=10, |