diff options
author | prathamesh | 2017-08-31 16:28:57 +0530 |
---|---|---|
committer | prathamesh | 2017-09-01 15:45:06 +0530 |
commit | 3d9bce5471d04bf50e03155d3cd67bdae44a4fcc (patch) | |
tree | 8e4eb5f574754b28bf2fcb441f085155c3eaa0af /yaksh/live_server_tests | |
parent | 055d0d1c51f90b4496a096a13bab5e4978fe9b92 (diff) | |
download | online_test-3d9bce5471d04bf50e03155d3cd67bdae44a4fcc.tar.gz online_test-3d9bce5471d04bf50e03155d3cd67bdae44a4fcc.tar.bz2 online_test-3d9bce5471d04bf50e03155d3cd67bdae44a4fcc.zip |
updated travis config and added print to debug on travis
Diffstat (limited to 'yaksh/live_server_tests')
-rw-r--r-- | yaksh/live_server_tests/selenium_test.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/yaksh/live_server_tests/selenium_test.py b/yaksh/live_server_tests/selenium_test.py index 859d032..d9ae9cd 100644 --- a/yaksh/live_server_tests/selenium_test.py +++ b/yaksh/live_server_tests/selenium_test.py @@ -75,7 +75,7 @@ class SeleniumTest(): def test_c_question(self, question_label): # Incorrect Answer - loop_count = 10 + loop_count = 3 answer = '\"int add(int a, int b, int c)\\n{return;}\"' self.submit_answer(question_label, answer, loop_count) @@ -91,7 +91,7 @@ class SeleniumTest(): def test_python_question(self, question_label): # Incorrect Answer - loop_count = 10 + loop_count = 3 answer = '\"def is_palindrome(s):\\n return s\"' self.submit_answer(question_label, answer, loop_count) @@ -107,7 +107,7 @@ class SeleniumTest(): def test_bash_question(self, question_label): # Incorrect Answer - loop_count = 10 + loop_count = 3 answer = '\"#!/bin/bash\\nls\"' self.submit_answer(question_label, answer, loop_count) |