diff options
author | adityacp | 2017-06-12 18:24:01 +0530 |
---|---|---|
committer | adityacp | 2017-06-12 18:24:01 +0530 |
commit | 3552f4bc8082fc3ecc5290029cac6a839cd3b247 (patch) | |
tree | bb2014bed4c67f644932070611bcdb68eb234912 /yaksh/evaluator_tests/test_python_evaluation.py | |
parent | a002ab59dbff856ee3838078cbe4f8fa439fd894 (diff) | |
parent | eae6ee7ceb25f78b216a5e2c9d6165513272e4cb (diff) | |
download | online_test-3552f4bc8082fc3ecc5290029cac6a839cd3b247.tar.gz online_test-3552f4bc8082fc3ecc5290029cac6a839cd3b247.tar.bz2 online_test-3552f4bc8082fc3ecc5290029cac6a839cd3b247.zip |
Add latest changes after rebase
Diffstat (limited to 'yaksh/evaluator_tests/test_python_evaluation.py')
-rw-r--r-- | yaksh/evaluator_tests/test_python_evaluation.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yaksh/evaluator_tests/test_python_evaluation.py b/yaksh/evaluator_tests/test_python_evaluation.py index a751c40..a2faf77 100644 --- a/yaksh/evaluator_tests/test_python_evaluation.py +++ b/yaksh/evaluator_tests/test_python_evaluation.py @@ -613,8 +613,8 @@ class PythonStdIOEvaluationTestCases(EvaluatorBaseTest): # Then self.assertFalse(result.get('success')) self.assert_correct_output( - "ERROR:\nExpected:\n3\nGiven:\n-1\n\nError in line 1 of output.", - result.get('error') + "Incorrect Answer: Line number(s) 1 did not match.", + result.get('error')[0].get('error_msg') ) def test_file_based_answer(self): |