Skip to content

Commit

Permalink
Use / operator for path joining
Browse files Browse the repository at this point in the history
Co-authored-by: Scott K Logan <[email protected]>
  • Loading branch information
luca-della-vedova and cottsay authored Jun 24, 2024
1 parent fb409e3 commit cc3519c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down

0 comments on commit cc3519c

Please sign in to comment.