From cc3519c29028735fb62f52bb4f39c62c00deab6e Mon Sep 17 00:00:00 2001 From: Luca Della Vedova Date: Mon, 24 Jun 2024 10:36:17 +0800 Subject: [PATCH] Use / operator for path joining Co-authored-by: Scott K Logan --- test/test_build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_build.py b/test/test_build.py index b2bea21..e8055e0 100644 --- a/test/test_build.py +++ b/test/test_build.py @@ -70,7 +70,7 @@ def test_build_package(): task = CargoBuildTask() task.set_context(context=context) - src_base = Path(task.context.args.path + '/src') + src_base = test_project_path / 'src' source_files_before = set(src_base.rglob('*')) rc = event_loop.run_until_complete(task.build())