From 227f4bbe02e11e2a56d0858dd4683f336d69d40b Mon Sep 17 00:00:00 2001 From: prathamesh Date: Fri, 13 Jul 2018 17:26:15 +0530 Subject: Fix minor issue in selenium --- yaksh/fixtures/demo_fixtures.json | 3 ++- yaksh/live_server_tests/selenium_test.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/yaksh/fixtures/demo_fixtures.json b/yaksh/fixtures/demo_fixtures.json index 779d4f9..5de2fbc 100644 --- a/yaksh/fixtures/demo_fixtures.json +++ b/yaksh/fixtures/demo_fixtures.json @@ -145,7 +145,8 @@ "institute": "Demo", "department": "Demo", "position": "Faculty", - "timezone": "UTC" + "timezone": "UTC", + "is_moderator": true } }, { diff --git a/yaksh/live_server_tests/selenium_test.py b/yaksh/live_server_tests/selenium_test.py index 229902c..5bf1988 100644 --- a/yaksh/live_server_tests/selenium_test.py +++ b/yaksh/live_server_tests/selenium_test.py @@ -118,7 +118,7 @@ class SeleniumTest(): # Correct Answer loop_count = 1 - answer = '\"#!/bin/bash\\necho "Hello, World!"\"' + answer = '\"#!/bin/bash\\necho Hello, World!\"' self.submit_answer(question_label, answer, loop_count) def open_quiz(self): -- cgit