]> granicus.if.org Git - php/commitdiff
Remove test for incorrect fix of bug #69882
authorJakub Zelenka <bukka@php.net>
Sun, 19 Jun 2016 16:25:30 +0000 (17:25 +0100)
committerJakub Zelenka <bukka@php.net>
Sun, 19 Jun 2016 16:25:30 +0000 (17:25 +0100)
The fix just cleared the errors without storing which was wrong

ext/openssl/tests/bug69882.phpt [deleted file]

diff --git a/ext/openssl/tests/bug69882.phpt b/ext/openssl/tests/bug69882.phpt
deleted file mode 100644 (file)
index 6963f8d..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
---TEST--
-Bug #69882: OpenSSL error "key values mismatch" after openssl_pkcs12_read with extra certs
---SKIPIF--
-<?php
-if (!extension_loaded("openssl")) die("skip");
-?>
---FILE--
-<?php
-$p12 = file_get_contents(__DIR__.'/p12_with_extra_certs.p12');
-
-$result = openssl_pkcs12_read($p12, $cert_data, 'qwerty');
-var_dump($result);
-var_dump(openssl_error_string());
-?>
---EXPECTF--
-bool(true)
-bool(false)