Skip to content

Commit 3dc6ba8

Browse files
nopeslideolofk
authored andcommitted
removed absolute path to binary when calling touch
1 parent 64658da commit 3dc6ba8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_edam.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,11 +128,11 @@ def test_edam_multiple_hooks(tmpdir):
128128
hooks = {
129129
"pre_build": [
130130
{
131-
"cmd": ["/usr/bin/touch", "hook_1_executed.txt"],
131+
"cmd": ["touch", "hook_1_executed.txt"],
132132
"name": "hook_1",
133133
},
134134
{
135-
"cmd": ["/usr/bin/touch", "hook_2_executed.txt"],
135+
"cmd": ["touch", "hook_2_executed.txt"],
136136
"name": "hook_2",
137137
},
138138
]

0 commit comments

Comments
 (0)