diff options
author | prathamesh | 2017-01-13 16:48:16 +0530 |
---|---|---|
committer | prathamesh | 2017-01-13 16:48:16 +0530 |
commit | 5ee9b4647c7f1ba9803a95ad3871f6acfc92c1c0 (patch) | |
tree | e50a2442e8df8e28a36bc5655743869515b11357 /yaksh/evaluator_tests/test_python_evaluation.py | |
parent | fe6c5c3b561c514fa328807fb8a571a620e438cf (diff) | |
download | online_test-5ee9b4647c7f1ba9803a95ad3871f6acfc92c1c0.tar.gz online_test-5ee9b4647c7f1ba9803a95ad3871f6acfc92c1c0.tar.bz2 online_test-5ee9b4647c7f1ba9803a95ad3871f6acfc92c1c0.zip |
removed unwanted css. Modified test.
Diffstat (limited to 'yaksh/evaluator_tests/test_python_evaluation.py')
-rw-r--r-- | yaksh/evaluator_tests/test_python_evaluation.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/yaksh/evaluator_tests/test_python_evaluation.py b/yaksh/evaluator_tests/test_python_evaluation.py index c58d7f1..43dfe6b 100644 --- a/yaksh/evaluator_tests/test_python_evaluation.py +++ b/yaksh/evaluator_tests/test_python_evaluation.py @@ -76,13 +76,13 @@ class PythonAssertionEvaluationTestCases(EvaluatorBaseTest): # Then self.assertFalse(result.get('success')) - self.assert_correct_output('AssertionError in: assert(add(1,2)==3)', + self.assert_correct_output('AssertionError in:\n assert(add(1,2)==3)', result.get('error') ) - self.assert_correct_output('AssertionError in: assert(add(-1,2)==1)', + self.assert_correct_output('AssertionError in:\n assert(add(-1,2)==1)', result.get('error') ) - self.assert_correct_output('AssertionError in: assert(add(-1,-2)==-3)', + self.assert_correct_output('AssertionError in:\n assert(add(-1,-2)==-3)', result.get('error') ) @@ -110,10 +110,10 @@ class PythonAssertionEvaluationTestCases(EvaluatorBaseTest): # Then self.assertFalse(result.get('success')) self.assertEqual(result.get('weight'), 2.0) - self.assert_correct_output('AssertionError in: assert(add(-1,2)==1)', + self.assert_correct_output('AssertionError in:\n assert(add(-1,2)==1)', result.get('error') ) - self.assert_correct_output('AssertionError in: assert(add(-1,-2)==-3)', + self.assert_correct_output('AssertionError in:\n assert(add(-1,-2)==-3)', result.get('error') ) |