summaryrefslogtreecommitdiff
path: root/ext/imap/tests/imap_base64_basic.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/imap/tests/imap_base64_basic.phpt')
-rw-r--r--ext/imap/tests/imap_base64_basic.phpt12
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/imap/tests/imap_base64_basic.phpt b/ext/imap/tests/imap_base64_basic.phpt
index a01545ceba..e5063f2c1c 100644
--- a/ext/imap/tests/imap_base64_basic.phpt
+++ b/ext/imap/tests/imap_base64_basic.phpt
@@ -16,25 +16,25 @@ echo "*** Testing imap_base64() : basic functionality ***\n";
$str = 'This is an example string to be base 64 encoded';
$base64 = base64_encode($str);
if (imap_base64($base64) == $str) {
- echo "TEST PASSED\n";
+ echo "TEST PASSED\n";
} else {
- echo "TEST FAILED";
+ echo "TEST FAILED";
}
$str = '!£$%^&*()_+-={][];;@~#?/>.<,';
$base64 = base64_encode($str);
if (imap_base64($base64) == $str) {
- echo "TEST PASSED\n";
+ echo "TEST PASSED\n";
} else {
- echo "TEST FAILED";
+ echo "TEST FAILED";
}
$hex = 'x00\x01\x02\x03\x04\x05\x06\xFA\xFB\xFC\xFD\xFE\xFF';
$base64 = base64_encode($hex);
if (imap_base64($base64) == $hex) {
- echo "TEST PASSED\n";
+ echo "TEST PASSED\n";
} else {
- echo "TEST FAILED";
+ echo "TEST FAILED";
}
?>