From f133ffd293098fb2aa88b040bc14be0bf452f6bd Mon Sep 17 00:00:00 2001 From: David Brochart Date: Thu, 11 Jan 2024 16:21:44 +0100 Subject: [PATCH] - --- plugins/yjs/tests/test_ydocs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/yjs/tests/test_ydocs.py b/plugins/yjs/tests/test_ydocs.py index b83fea76..8c3d4334 100644 --- a/plugins/yjs/tests/test_ydocs.py +++ b/plugins/yjs/tests/test_ydocs.py @@ -36,7 +36,7 @@ async def assert_with_timeout(func, timeout=100): async def test_ydrive(): tmp_dirname = "tmpdir_test_ydrive" try: - tmp_dir = Path(tmp_dirname) + tmp_dir = Path(tmp_dirname).resolve() if tmp_dir.exists(): shutil.rmtree(tmp_dirname) tmp_dir.mkdir()