summaryrefslogtreecommitdiff
path: root/ext/standard/tests/strings/chunk_split_variation6.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/strings/chunk_split_variation6.phpt')
-rw-r--r--ext/standard/tests/strings/chunk_split_variation6.phpt26
1 files changed, 13 insertions, 13 deletions
diff --git a/ext/standard/tests/strings/chunk_split_variation6.phpt b/ext/standard/tests/strings/chunk_split_variation6.phpt
index 705bb31fca..4242a81a9b 100644
--- a/ext/standard/tests/strings/chunk_split_variation6.phpt
+++ b/ext/standard/tests/strings/chunk_split_variation6.phpt
@@ -23,19 +23,19 @@ $ending = "):(";
$values = array(
'', //empty
' ', //space
- 'This is simple string', //regular string
- 'It\'s string with quotes',
- 'This contains @ # $ % ^ & chars', //special characters
- 'This string\tcontains\rwhite space\nchars', //with white space chars
- 'This is string with 1234 numbers',
- 'This is string with \0 and ".chr(0)."null chars', //for binary safe
- 'This is string with multiple space char',
- 'This is to check string with ()',
- ' Testing with multiple spaces ',
- 'Testing invalid \k and \m escape char',
- 'This is to check with \\n and \\t'
-);
-
+ 'This is simple string', //regular string
+ 'It\'s string with quotes',
+ 'This contains @ # $ % ^ & chars', //special characters
+ 'This string\tcontains\rwhite space\nchars', //with white space chars
+ 'This is string with 1234 numbers',
+ 'This is string with \0 and ".chr(0)."null chars', //for binary safe
+ 'This is string with multiple space char',
+ 'This is to check string with ()',
+ ' Testing with multiple spaces ',
+ 'Testing invalid \k and \m escape char',
+ 'This is to check with \\n and \\t'
+);
+
//Loop through each element of values for 'str'
for($count = 0;$count < count($values);$count++) {