diff options
Diffstat (limited to 'Lib/test/test_repl.py')
-rw-r--r-- | Lib/test/test_repl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_repl.py b/Lib/test/test_repl.py index 2ee5117..7533376 100644 --- a/Lib/test/test_repl.py +++ b/Lib/test/test_repl.py @@ -184,7 +184,7 @@ class TestInteractiveInterpreter(unittest.TestCase): p.stdin.write(user_input) user_input2 = dedent(""" import linecache - print(linecache.cache['<python-input-1>']) + print(linecache.cache['<stdin>-1']) """) p.stdin.write(user_input2) output = kill_python(p) |