summaryrefslogtreecommitdiff
path: root/ext/imap/tests/imap_binary_basic.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/imap/tests/imap_binary_basic.phpt')
-rw-r--r--ext/imap/tests/imap_binary_basic.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/imap/tests/imap_binary_basic.phpt b/ext/imap/tests/imap_binary_basic.phpt
index bd4eabba51..2cbabc08c4 100644
--- a/ext/imap/tests/imap_binary_basic.phpt
+++ b/ext/imap/tests/imap_binary_basic.phpt
@@ -1,5 +1,5 @@
--TEST--
-Test imap_binary() function : basic functionality
+Test imap_binary() function : basic functionality
--SKIPIF--
<?php
extension_loaded('imap') or die('skip imap extension not available in this build');
@@ -18,7 +18,7 @@ $str = b'This is an example string to be base 64 encoded';
$base64 = imap_binary($str);
var_dump(bin2hex($base64));
-echo "Encode a string which results in more than 60 charters of output\n";
+echo "Encode a string which results in more than 60 charters of output\n";
$str = b'This is a long string with results in more than 60 characters of output';
$base64 = imap_binary($str);
var_dump(bin2hex($base64));