summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/test_replwrap.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_replwrap.py b/tests/test_replwrap.py
index 6e56af0..314786b 100644
--- a/tests/test_replwrap.py
+++ b/tests/test_replwrap.py
@@ -88,8 +88,8 @@ class REPLWrapTestCase(unittest.TestCase):
child = pexpect.spawnu('python', echo=False, timeout=5)
# prompt_change=None should mean no prompt change
- py = replwrap.REPLWrapper(child, replwrap.u(">>> "), prompt_change=None,
- continuation_prompt=replwrap.u("... "))
+ py = replwrap.REPLWrapper(child, u">>> ", prompt_change=None,
+ continuation_prompt=u"... ")
assert py.prompt == ">>> "
res = py.run_command("for a in range(3): print(a)\n")