summaryrefslogtreecommitdiff
path: root/ext/openssl/tests/openssl_pkcs7_decrypt_error.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/openssl/tests/openssl_pkcs7_decrypt_error.phpt')
-rw-r--r--ext/openssl/tests/openssl_pkcs7_decrypt_error.phpt14
1 files changed, 7 insertions, 7 deletions
diff --git a/ext/openssl/tests/openssl_pkcs7_decrypt_error.phpt b/ext/openssl/tests/openssl_pkcs7_decrypt_error.phpt
index 3e76efe22d..f892c6854f 100644
--- a/ext/openssl/tests/openssl_pkcs7_decrypt_error.phpt
+++ b/ext/openssl/tests/openssl_pkcs7_decrypt_error.phpt
@@ -7,13 +7,13 @@ openssl_pkcs7_decrypt() and invalid parameters
function myErrorHandler($errno, $errstr, $errfile, $errline) {
var_dump($errstr);
-}
-set_error_handler("myErrorHandler");
+}
+set_error_handler("myErrorHandler");
-$a = 1;
-$b = 1;
-$c = new stdclass;
-$d = new stdclass;
+$a = 1;
+$b = 1;
+$c = new stdclass;
+$d = new stdclass;
var_dump(openssl_pkcs7_decrypt($a, $b, $c, $d));
var_dump($c);
@@ -25,7 +25,7 @@ var_dump(openssl_pkcs7_decrypt($a, $b, 0, 0));
echo "Done\n";
?>
---EXPECT--
+--EXPECT--
string(57) "Object of class stdClass could not be converted to string"
string(66) "openssl_pkcs7_decrypt(): unable to coerce parameter 3 to x509 cert"
bool(false)