We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cba5e60 commit 9291de3Copy full SHA for 9291de3
ext/mysqli/tests/mysqli_pam_sha256_public_key_ini.phpt
@@ -120,6 +120,9 @@ mysqlnd.sha256_server_public_key="test_sha256_ini"
120
$link->query('DROP USER shatest@localhost');
121
$file = "test_sha256_ini";
122
@unlink($file);
123
+ if (PHP_MAJOR_VERSION === 8 && PHP_MINOR_VERSION === 1) { // fix temporary file deletion for Github Action CI for PHP 8.1
124
+ @unlink(__DIR__ . '/../../../' . $file);
125
+ }
126
?>
127
--EXPECTF--
128
Warning: mysqli::__construct(): (HY000/1045): %s in %s on line %d
0 commit comments