summaryrefslogtreecommitdiff
path: root/ext/posix/tests/posix_getppid_basic.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/posix/tests/posix_getppid_basic.phpt')
-rw-r--r--ext/posix/tests/posix_getppid_basic.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/posix/tests/posix_getppid_basic.phpt b/ext/posix/tests/posix_getppid_basic.phpt
index 2da591c177..3cbf5d7a6e 100644
--- a/ext/posix/tests/posix_getppid_basic.phpt
+++ b/ext/posix/tests/posix_getppid_basic.phpt
@@ -2,15 +2,15 @@
Test posix_getppid() function : basic functionality
--SKIPIF--
<?php
- if (!extension_loaded('posix')) die('skip - POSIX extension not loaded');
+ if (!extension_loaded('posix')) die('skip - POSIX extension not loaded');
?>
--FILE--
<?php
- echo "Basic test of POSIX getppid function\n";
+ echo "Basic test of POSIX getppid function\n";
$ppid = posix_getppid();
- var_dump($ppid);
+ var_dump($ppid);
?>
===DONE====