diff options
author | maheshgudi | 2016-07-28 18:24:18 +0530 |
---|---|---|
committer | maheshgudi | 2016-07-28 18:24:18 +0530 |
commit | 1b71abc9437d721a41f017db406f312755f5a4c4 (patch) | |
tree | e4fac39cf722608c1f8bf0d208b8a3e8c39f2d9f /yaksh/stdio_evaluator.py | |
parent | 9411ab221e007a6c3e2901ce34f38f2267288b6e (diff) | |
download | online_test-1b71abc9437d721a41f017db406f312755f5a4c4.tar.gz online_test-1b71abc9437d721a41f017db406f312755f5a4c4.tar.bz2 online_test-1b71abc9437d721a41f017db406f312755f5a4c4.zip |
added expected input in traceback for python and made minor changes in bash_stio_evaluator and stdio_evaluator
Diffstat (limited to 'yaksh/stdio_evaluator.py')
-rw-r--r-- | yaksh/stdio_evaluator.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yaksh/stdio_evaluator.py b/yaksh/stdio_evaluator.py index 86b124c..4f5cfaf 100644 --- a/yaksh/stdio_evaluator.py +++ b/yaksh/stdio_evaluator.py @@ -9,7 +9,7 @@ class Evaluator(object): error_msg = "Expected Output is {0} ".\ format(repr(expected_output)) else: - error_msg = " Given Input is {0} \n Expected Output is {1} ".\ + error_msg = " Given Input is\n {0} \n Expected Output is {1} ".\ format(expected_input, repr(expected_output)) if output_err == '': if user_output == expected_output: |