diff options
Diffstat (limited to 'tests/exec.t')
-rwxr-xr-x | tests/exec.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/exec.t b/tests/exec.t index da5113d..c155c88 100755 --- a/tests/exec.t +++ b/tests/exec.t @@ -84,7 +84,7 @@ it::system('touch /tmp/it_system_test'); ok(file_exists('/tmp/it_system_test'), 'shell command gets executed'); @unlink('/tmp/it_system_test'); -it::system('touch {path}', 'path' => '/tmp/it_system_test'); +it::system('touch {path}', array('path' => '/tmp/it_system_test')); ok(file_exists('/tmp/it_system_test'), 'shell command with argument'); @unlink('/tmp/it_system_test'); |