Skip to content

Commit 8b9d218

Browse files
committed
Fix history file
1 parent ce03cce commit 8b9d218

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_repl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ def test_pythonstartup_success(self):
269269
def test_pythonstartup_failure(self):
270270
# case 2: error in PYTHONSTARTUP triggered by user input
271271
startup_code = "def foo():\n 1/0\n"
272-
with new_startup_env(code=startup_code, histfile=".asyncio_history") as startup_env:
272+
with new_startup_env(code=startup_code, histfile=".pythonhist") as startup_env:
273273
# -q to suppress noise
274274
p = spawn_repl("-q", env=os.environ | startup_env, isolated=False)
275275
p.stdin.write("foo()")

0 commit comments

Comments
 (0)