Skip to content

Commit

Permalink
removed absolute path to binary when calling touch
Browse files Browse the repository at this point in the history
  • Loading branch information
nopeslide authored and olofk committed Nov 21, 2023
1 parent 64658da commit 3dc6ba8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_edam.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,11 +128,11 @@ def test_edam_multiple_hooks(tmpdir):
hooks = {
"pre_build": [
{
"cmd": ["/usr/bin/touch", "hook_1_executed.txt"],
"cmd": ["touch", "hook_1_executed.txt"],
"name": "hook_1",
},
{
"cmd": ["/usr/bin/touch", "hook_2_executed.txt"],
"cmd": ["touch", "hook_2_executed.txt"],
"name": "hook_2",
},
]
Expand Down

0 comments on commit 3dc6ba8

Please sign in to comment.