From 590dc4a5e99fc1f72287d13e5ce25d1506b4e518 Mon Sep 17 00:00:00 2001 From: maheshgudi Date: Fri, 13 Jul 2018 16:48:21 +0530 Subject: Fix unit and selenium tests for simple questions --- yaksh/models.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'yaksh/models.py') diff --git a/yaksh/models.py b/yaksh/models.py index f8dac8b..f7adfd8 100644 --- a/yaksh/models.py +++ b/yaksh/models.py @@ -1595,9 +1595,11 @@ class QuestionPaper(models.Model): question_paper = QuestionPaper.objects.create(quiz=demo_quiz, shuffle_questions=False ) - summaries = ['Roots of quadratic equation', 'Print Output', + summaries = ['Find the value of n', 'Print Output in Python2.x', 'Adding decimals', 'For Loop over String', - 'Hello World in File', 'Extract columns from files', + 'Hello World in File', + 'Arrange code to convert km to miles', + 'Print Hello, World!', "Square of two numbers", 'Check Palindrome', 'Add 3 numbers', 'Reverse a string' ] questions = Question.objects.filter(active=True, -- cgit