diff options
author | Nuno Lopes <nlopess@php.net> | 2007-09-13 18:24:26 +0000 |
---|---|---|
committer | Nuno Lopes <nlopess@php.net> | 2007-09-13 18:24:26 +0000 |
commit | 69fbaf7d109aca92d30906be3160befba241805c (patch) | |
tree | ce17f6372de84c8ba392a5a8f4253cf22c629fe4 /ext/standard/tests/file/006_basic.phpt | |
parent | 4d34ae29468e29f943717a649f690dac37346282 (diff) | |
download | php-git-69fbaf7d109aca92d30906be3160befba241805c.tar.gz |
fix skip reasons. the word 'skip' should be followed by a single space and doesnt need any \n at the end
Diffstat (limited to 'ext/standard/tests/file/006_basic.phpt')
-rw-r--r-- | ext/standard/tests/file/006_basic.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/tests/file/006_basic.phpt b/ext/standard/tests/file/006_basic.phpt index b4eee97d37..213442c15f 100644 --- a/ext/standard/tests/file/006_basic.phpt +++ b/ext/standard/tests/file/006_basic.phpt @@ -11,7 +11,7 @@ $fp = fopen($filename, 'w'); fclose($fp); if(fileowner($filename) == 0) { unlink ($filename); - die('skip...cannot be run as root\n'); + die('skip cannot be run as root'); } unlink($filename); |