aboutsummaryrefslogtreecommitdiff
path: root/tests/cmdline
diff options
context:
space:
mode:
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