summaryrefslogtreecommitdiff
path: root/yaksh/models.py
diff options
context:
space:
mode:
authormahesh2018-02-08 15:19:27 +0530
committermaheshgudi2018-03-16 15:15:50 +0530
commit337daeef8954a1be20164c5fb27050e67597b8a2 (patch)
treebb45b64a3ea0a27fed01c14f0a3f73cd07aabeb1 /yaksh/models.py
parent51c8184a795942c9f85b14a8914d03ee788e5639 (diff)
downloadonline_test-337daeef8954a1be20164c5fb27050e67597b8a2.tar.gz
online_test-337daeef8954a1be20164c5fb27050e67597b8a2.tar.bz2
online_test-337daeef8954a1be20164c5fb27050e67597b8a2.zip
Improve test cases for TestCaseOrder model
Diffstat (limited to 'yaksh/models.py')
-rw-r--r--yaksh/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yaksh/models.py b/yaksh/models.py
index f823cda..0bb1e66 100644
--- a/yaksh/models.py
+++ b/yaksh/models.py
@@ -939,7 +939,7 @@ class Question(models.Model):
order = TestCaseOrder.objects.get(answer_paper=answerpaper,
question = self
).order.split(",")
- return [self.get_test_cases(id=int(tc_id))[0]\
+ return [self.get_test_case(id=int(tc_id))
for tc_id in order
]
except TestCaseOrder.DoesNotExist: