aboutsummaryrefslogtreecommitdiff
path: root/tests/cmdline
diff options
context:
space:
mode:
authorTom Soulanille2015-07-23 12:05:30 -0700
committerDamien George2015-07-26 15:23:11 +0100
commit3dd0b69e467fd89e5113dbc5ee43f33282a66c91 (patch)
tree24ea8fa66bf9f4e58947f5bbd4d85a0eb2c7e6bc /tests/cmdline
parent7d588b0c7c9698d23b1e5e7b54e0e2094ad8f464 (diff)
run-tests: Use PTY when running REPL tests.
Diffstat (limited to 'tests/cmdline')
-rw-r--r--tests/cmdline/repl_cont.py.exp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/cmdline/repl_cont.py.exp b/tests/cmdline/repl_cont.py.exp
index 2405e601c..b24e67017 100644
--- a/tests/cmdline/repl_cont.py.exp
+++ b/tests/cmdline/repl_cont.py.exp
@@ -1,6 +1,6 @@
Micro Python \.\+ linux version
>>> # check REPL allows to continue input
->>> 1 \
+>>> 1 \\\\
... + 2
3
>>> 'abc'
@@ -9,10 +9,10 @@ Micro Python \.\+ linux version
'abc'
>>> '''abc
... def'''
-'abc\ndef'
+'abc\\\\ndef'
>>> """ABC
... DEF"""
-'ABC\nDEF'
+'ABC\\\\nDEF'
>>> print(
... 1 + 2)
3