summaryrefslogtreecommitdiff
path: root/ext/ctype/tests/ctype_punct_variation2.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/ctype/tests/ctype_punct_variation2.phpt')
-rw-r--r--ext/ctype/tests/ctype_punct_variation2.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/ctype/tests/ctype_punct_variation2.phpt b/ext/ctype/tests/ctype_punct_variation2.phpt
index 3a4a66ac7b..68f3e77037 100644
--- a/ext/ctype/tests/ctype_punct_variation2.phpt
+++ b/ext/ctype/tests/ctype_punct_variation2.phpt
@@ -5,8 +5,8 @@ Test ctype_punct() function : usage variations - different integers
--FILE--
<?php
/* Prototype : bool ctype_punct(mixed $c)
- * Description: Checks for any printable character which is not whitespace
- * or an alphanumeric character
+ * Description: Checks for any printable character which is not whitespace
+ * or an alphanumeric character
* Source code: ext/ctype/ctype.c
*/
@@ -17,7 +17,7 @@ Test ctype_punct() function : usage variations - different integers
echo "*** Testing ctype_punct() : usage variations ***\n";
-$orig = setlocale(LC_CTYPE, "C");
+$orig = setlocale(LC_CTYPE, "C");
for ($c = 1; $c < 256; $c++) {
if (ctype_punct($c)) {
@@ -25,7 +25,7 @@ for ($c = 1; $c < 256; $c++) {
}
}
-setlocale(LC_CTYPE, $orig);
+setlocale(LC_CTYPE, $orig);
?>
===DONE===
--EXPECTF--