diff options
Diffstat (limited to 'testapp/tests/test_python_evaluation.py')
-rw-r--r-- | testapp/tests/test_python_evaluation.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/testapp/tests/test_python_evaluation.py b/testapp/tests/test_python_evaluation.py index 57e111c..68435c5 100644 --- a/testapp/tests/test_python_evaluation.py +++ b/testapp/tests/test_python_evaluation.py @@ -1,8 +1,7 @@ - import unittest import os -from exam.python_code_evaluator import PythonCodeEvaluator -from exam.settings import SERVER_TIMEOUT +from testapp.exam.python_code_evaluator import PythonCodeEvaluator +from testapp.exam.settings import SERVER_TIMEOUT class PythonEvaluationTestCases(unittest.TestCase): def setUp(self): @@ -51,4 +50,4 @@ class PythonEvaluationTestCases(unittest.TestCase): self.assertEquals(result.get("error"), self.timeout_msg) if __name__ == '__main__': - unittest.main()
\ No newline at end of file + unittest.main() |