diff options
Diffstat (limited to 'ext/intl/tests/resourcebundle_create.phpt')
-rw-r--r-- | ext/intl/tests/resourcebundle_create.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/intl/tests/resourcebundle_create.phpt b/ext/intl/tests/resourcebundle_create.phpt index 9d551219ec..09bad4fddf 100644 --- a/ext/intl/tests/resourcebundle_create.phpt +++ b/ext/intl/tests/resourcebundle_create.phpt @@ -4,7 +4,7 @@ Test ResourceBundle::__construct() - existing/missing bundles/locales <?php if( !extension_loaded( 'intl' ) ) print 'skip'; ?> --FILE-- <?php - + include "resourcebundle.inc"; function ut_main() { @@ -31,7 +31,7 @@ function ut_main() { // missing $r3 = ut_resourcebundle_create( 'en_US', 'nonexisting' ); $str_res .= debug( $r3 ); - + return $str_res; } |