diff options
author | Christopher Jones <sixd@php.net> | 2011-12-08 20:43:23 +0000 |
---|---|---|
committer | Christopher Jones <sixd@php.net> | 2011-12-08 20:43:23 +0000 |
commit | 77b821d3c5c3050e820da083eed67c665fad9da4 (patch) | |
tree | 5fd20256b8decbfbb9e33bc5c951211bd7f6807f /ext/phar/tests | |
parent | e8eab79ac80f8552aa5d2069a19f8f79b9263860 (diff) | |
download | php-git-77b821d3c5c3050e820da083eed67c665fad9da4.tar.gz |
Fix skipif
Diffstat (limited to 'ext/phar/tests')
-rw-r--r-- | ext/phar/tests/phar_gobyebye-win32.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/phar/tests/phar_gobyebye-win32.phpt b/ext/phar/tests/phar_gobyebye-win32.phpt index 0e1c70597c..43c8c77823 100644 --- a/ext/phar/tests/phar_gobyebye-win32.phpt +++ b/ext/phar/tests/phar_gobyebye-win32.phpt @@ -2,7 +2,7 @@ Phar: test edge cases of intercepted functions when the underlying phar archive has been unlinkArchive()d
--SKIPIF--
<?php if (!extension_loaded("phar")) die("skip");
-if (strpos(PHP_OS, 'WIN') !== false) die("Extra warning on Windows.");
+if (strpos(PHP_OS, 'WIN') === false) die("skip Extra warning on Windows.");
?>
--INI--
phar.readonly=0
|