This commit is contained in:
meejah 2022-09-21 23:36:23 -06:00
parent 8d8b0e6f01
commit 4f5a1ac372

View File

@ -638,7 +638,7 @@ class PidFileLocking(SyncTestCase):
pidfile = FilePath("foo")
lockfile = _pidfile_to_lockpath(pidfile)
with open("code.py", "w") as f:
with open("other_lock.py", "w") as f:
f.write(
"\n".join([
"import filelock, time",
@ -648,7 +648,7 @@ class PidFileLocking(SyncTestCase):
])
)
proc = Popen(
[sys.executable, "code.py"],
[sys.executable, "other_lock.py"],
stdout=PIPE,
stderr=PIPE,
start_new_session=True,