diff options
Diffstat (limited to 'testapp/tests/test_bash_evaluation.py')
-rw-r--r-- | testapp/tests/test_bash_evaluation.py | 6 |
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() |