diff options
author | Prabhu Ramachandran | 2015-05-27 10:58:44 +0530 |
---|---|---|
committer | Prabhu Ramachandran | 2015-05-27 10:58:44 +0530 |
commit | a83b57aee80959f11f96ad6a3a738c9fac906e26 (patch) | |
tree | f14a18f7e821d87b098a93610ece8772d568563b /testapp/tests/test_python_evaluation.py | |
parent | a022e0145ec8fb1622d58c2e2281c016b1d45b01 (diff) | |
parent | 92150265c82f3d1f6e4eb382447ae8e448cd406f (diff) | |
download | online_test-a83b57aee80959f11f96ad6a3a738c9fac906e26.tar.gz online_test-a83b57aee80959f11f96ad6a3a738c9fac906e26.tar.bz2 online_test-a83b57aee80959f11f96ad6a3a738c9fac906e26.zip |
Merge pull request #48 from ankitjavalkar/add-docs
Re apply docs directory in testapp directory and other changes
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() |