summaryrefslogtreecommitdiff
path: root/tests/exec.t
diff options
context:
space:
mode:
authorDavid Flatz2016-02-03 18:12:16 +0100
committerDavid Flatz2016-02-03 18:25:21 +0100
commit06dbabffb1d0cbae2a707968b2cd34a996d23171 (patch)
tree374a9c8b9e9535dd228da4a2d8b2e874241b46b6 /tests/exec.t
parenteb55ac5cea8ad3720505645600e6d854d737603a (diff)
downloaditools-06dbabffb1d0cbae2a707968b2cd34a996d23171.tar.gz
itools-06dbabffb1d0cbae2a707968b2cd34a996d23171.tar.bz2
itools-06dbabffb1d0cbae2a707968b2cd34a996d23171.zip
make tests compatible to php 5.3 std
Diffstat (limited to 'tests/exec.t')
-rwxr-xr-xtests/exec.t2
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');