summaryrefslogtreecommitdiff
path: root/testapp/tests/test_bash_evaluation.py
diff options
context:
space:
mode:
authorankitjavalkar2015-05-13 18:20:26 +0530
committerankitjavalkar2015-05-20 14:58:05 +0530
commit92150265c82f3d1f6e4eb382447ae8e448cd406f (patch)
treef14a18f7e821d87b098a93610ece8772d568563b /testapp/tests/test_bash_evaluation.py
parent13317f56278969cb6568026d099e15166bfc5d6c (diff)
downloadonline_test-92150265c82f3d1f6e4eb382447ae8e448cd406f.tar.gz
online_test-92150265c82f3d1f6e4eb382447ae8e448cd406f.tar.bz2
online_test-92150265c82f3d1f6e4eb382447ae8e448cd406f.zip
Fix import paths, formatting, views and minor errors
- Submitted file path should be set after changing directory - Change timeout duration in java test case - Set shell=True in _compile_command - Fix errors in code as per tests
Diffstat (limited to 'testapp/tests/test_bash_evaluation.py')
-rw-r--r--testapp/tests/test_bash_evaluation.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/testapp/tests/test_bash_evaluation.py b/testapp/tests/test_bash_evaluation.py
index 3ae3b0b..fd906da 100644
--- a/testapp/tests/test_bash_evaluation.py
+++ b/testapp/tests/test_bash_evaluation.py
@@ -1,7 +1,7 @@
import unittest
import os
-from exam.bash_code_evaluator import BashCodeEvaluator
-from exam.settings import SERVER_TIMEOUT
+from testapp.exam.bash_code_evaluator import BashCodeEvaluator
+from testapp.exam.settings import SERVER_TIMEOUT
class BashEvaluationTestCases(unittest.TestCase):
def setUp(self):
@@ -38,4 +38,4 @@ class BashEvaluationTestCases(unittest.TestCase):
self.assertEquals(result.get("error"), self.timeout_msg)
if __name__ == '__main__':
- unittest.main() \ No newline at end of file
+ unittest.main()