diff options
| author | Nuno Lopes <nlopess@php.net> | 2008-01-27 16:54:22 +0000 |
|---|---|---|
| committer | Nuno Lopes <nlopess@php.net> | 2008-01-27 16:54:22 +0000 |
| commit | 500ee29e6c58f097000a7d96a32462e5c461cf96 (patch) | |
| tree | 5f259be74e0f3d7a0eadcea811da23b07de62384 | |
| parent | d16f4cad0a0550ce9c022c5082cd634518ac8a96 (diff) | |
| download | php-git-500ee29e6c58f097000a7d96a32462e5c461cf96.tar.gz | |
be more strict in the skipif
| -rwxr-xr-x | ext/standard/tests/strings/moneyformat.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/tests/strings/moneyformat.phpt b/ext/standard/tests/strings/moneyformat.phpt index c045bb19c9..db6c48c7d5 100755 --- a/ext/standard/tests/strings/moneyformat.phpt +++ b/ext/standard/tests/strings/moneyformat.phpt @@ -6,7 +6,7 @@ money_format test die("SKIP money_format - not supported\n"); } -if (setlocale(LC_MONETARY, 'en_US') == false) { +if (setlocale(LC_MONETARY, 'en_US') === false) { die('skip en_US locale not available'); } ?> |
