From ffc7b3b710a355c909eddc63f4a70bf683a2c0be Mon Sep 17 00:00:00 2001 From: hajdul88 <52442977+hajdul88@users.noreply.github.com> Date: Fri, 10 Oct 2025 15:43:43 +0200 Subject: [PATCH] Update test_concurrent_subprocess_access.py --- cognee/tests/test_concurrent_subprocess_access.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cognee/tests/test_concurrent_subprocess_access.py b/cognee/tests/test_concurrent_subprocess_access.py index b31592984..903cd4de8 100644 --- a/cognee/tests/test_concurrent_subprocess_access.py +++ b/cognee/tests/test_concurrent_subprocess_access.py @@ -32,9 +32,9 @@ async def test_concurrent_subprocess_access(): await cognee.prune.prune_data() await cognee.prune.prune_system(metadata=True) - writer_process = subprocess.Popen([os.sys.executable, "writer.py"]) + writer_process = subprocess.Popen([os.sys.executable, "subprocesses/writer.py"]) - reader_process = subprocess.Popen([os.sys.executable, "reader.py"]) + reader_process = subprocess.Popen([os.sys.executable, "subprocesses/reader.py"]) # Wait for both processes to complete writer_process.wait()