diff options
-rw-r--r-- | yaksh/fixtures/demo_fixtures.json | 3 | ||||
-rw-r--r-- | 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): |